Log ignored notifications when updateCoordinator is null
This commit is contained in:
parent
6f97b8c1e5
commit
ea5c6a0848
|
@ -94,7 +94,8 @@ public class UpdateFirmwareOperation extends AbstractMiBandOperation {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
if (updateCoordinator == null) {
|
if (updateCoordinator == null) {
|
||||||
LOG.error("received notification when updateCoordinator is null, ignoring!");
|
LOG.error("received notification when updateCoordinator is null, ignoring (notification content follows):");
|
||||||
|
getSupport().logMessageContent(value);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue