ID115: log IO exceptions

This commit is contained in:
Vadim Kaushan
2018-07-15 00:46:11 +03:00
parent fe9ec9b88a
commit a94e0b9463
@@ -93,6 +93,7 @@ public class ID115Support extends AbstractBTLEDeviceSupport {
setTime(builder);
performConnected(builder.getTransaction());
} catch(IOException e) {
LOG.warn("Unable to send current time", e);
}
}
@@ -368,6 +369,7 @@ public class ID115Support extends AbstractBTLEDeviceSupport {
});
performConnected(builder.getTransaction());
} catch(IOException e) {
LOG.warn("Unable to stop call notification", e);
}
}
@@ -420,6 +422,7 @@ public class ID115Support extends AbstractBTLEDeviceSupport {
builder.write(normalWriteCharacteristic, cmd);
performConnected(builder.getTransaction());
} catch (IOException e) {
LOG.warn("Unable to send notification chunk", e);
}
}