Log unhandled message which has specific destination.

Broadcast message is unnecessary to log as broadcast message.

Bug: 16039302
Change-Id: Ifffc09b49bceaaf220ce929206eaecb78146016f
This commit is contained in:
Jungshik Jang
2014-07-03 09:34:05 +09:00
parent d1ed9b3ea7
commit 3a959fca91

View File

@@ -421,7 +421,9 @@ public final class HdmiControlService extends SystemService {
}
}
Slog.w(TAG, "Unhandled cec command:" + message);
if (message.getDestination() != HdmiCec.ADDR_BROADCAST) {
Slog.w(TAG, "Unhandled cec command:" + message);
}
return false;
}