[miio] remove unneeded debug msg (#8919)

Signed-off-by: Marcel Verpaalen <marcel@verpaalen.com>
This commit is contained in:
Marcel 2020-11-01 08:17:40 +01:00 committed by GitHub
parent ddb5f9a3bf
commit b4bc6d7e77
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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();