mirror of
https://github.com/openhab/openhab-addons.git
synced 2025-01-10 15:11:59 +01:00
[miio] remove unneeded debug msg (#8919)
Signed-off-by: Marcel Verpaalen <marcel@verpaalen.com>
This commit is contained in:
parent
ddb5f9a3bf
commit
b4bc6d7e77
@ -211,7 +211,6 @@ public abstract class MiIoAbstractHandler extends BaseThingHandler implements Mi
|
||||
String param = "[]";
|
||||
int sb = command.indexOf("[");
|
||||
int cb = command.indexOf("{");
|
||||
logger.debug("locs {}, {}", sb, cb);
|
||||
if (Math.max(sb, cb) > 0) {
|
||||
int loc = (Math.min(sb, cb) > 0 ? Math.min(sb, cb) : Math.max(sb, cb));
|
||||
param = command.substring(loc).trim();
|
||||
|
Loading…
Reference in New Issue
Block a user