log.debug -> log.error on RS comm
This commit is contained in:
parent
3cdca93b30
commit
2fb707b9ed
|
@ -53,7 +53,7 @@ public class DanaRS_Packet_APS_Basal_Set_Temporary_Basal extends DanaRS_Packet {
|
||||||
int result = byteArrayToInt(getBytes(data, DATA_START, 1));
|
int result = byteArrayToInt(getBytes(data, DATA_START, 1));
|
||||||
if (result != 1) {
|
if (result != 1) {
|
||||||
failed = true;
|
failed = true;
|
||||||
log.debug("Set APS temp basal start result: " + result + " FAILED!!!");
|
log.error("Set APS temp basal start result: " + result + " FAILED!!!");
|
||||||
} else {
|
} else {
|
||||||
if (Config.logDanaMessageDetail)
|
if (Config.logDanaMessageDetail)
|
||||||
log.debug("Set APS temp basal start result: " + result);
|
log.debug("Set APS temp basal start result: " + result);
|
||||||
|
|
|
@ -63,7 +63,7 @@ public class DanaRS_Packet_APS_Set_Event_History extends DanaRS_Packet {
|
||||||
int result = intFromBuff(data, 0, 1);
|
int result = intFromBuff(data, 0, 1);
|
||||||
if (result != 1) {
|
if (result != 1) {
|
||||||
failed = true;
|
failed = true;
|
||||||
log.debug("Set history entry result: " + result + " FAILED!!!");
|
log.error("Set history entry result: " + result + " FAILED!!!");
|
||||||
} else {
|
} else {
|
||||||
if (Config.logDanaMessageDetail)
|
if (Config.logDanaMessageDetail)
|
||||||
log.debug("Set history entry result: " + result);
|
log.debug("Set history entry result: " + result);
|
||||||
|
|
Loading…
Reference in a new issue