Remove some logs
This commit is contained in:
parent
bcd175fbfb
commit
2a3eaabbe4
@ -227,8 +227,6 @@ class _LightControlsWidgetState extends State<LightControlsWidget> {
|
|||||||
|
|
||||||
Widget _buildEffectControl(LightEntity entity) {
|
Widget _buildEffectControl(LightEntity entity) {
|
||||||
if ((entity.supportEffect) && (entity.effectList != null)) {
|
if ((entity.supportEffect) && (entity.effectList != null)) {
|
||||||
Logger.d("[LIGHT] entity effects: ${entity.effectList}");
|
|
||||||
Logger.d("[LIGHT] current effect: $_tmpEffect");
|
|
||||||
List<String> list = List.from(entity.effectList);
|
List<String> list = List.from(entity.effectList);
|
||||||
if (_tmpEffect!= null && !list.contains(_tmpEffect)) {
|
if (_tmpEffect!= null && !list.contains(_tmpEffect)) {
|
||||||
list.insert(0, _tmpEffect);
|
list.insert(0, _tmpEffect);
|
||||||
|
@ -350,7 +350,6 @@ class ConnectionManager {
|
|||||||
|
|
||||||
Future callService(String domain, String service, String entityId, Map additionalServiceData) {
|
Future callService(String domain, String service, String entityId, Map additionalServiceData) {
|
||||||
eventBus.fire(NotifyServiceCallEvent(domain, service, entityId));
|
eventBus.fire(NotifyServiceCallEvent(domain, service, entityId));
|
||||||
Logger.d("[callService] $domain.$service $entityId $additionalServiceData");
|
|
||||||
Completer completer = Completer();
|
Completer completer = Completer();
|
||||||
Map serviceData = {};
|
Map serviceData = {};
|
||||||
if (entityId != null) {
|
if (entityId != null) {
|
||||||
|
Reference in New Issue
Block a user