RuffyScripter: adjust some log levels.
This commit is contained in:
parent
65ca6cf895
commit
e0ac080583
1 changed files with 2 additions and 2 deletions
|
@ -160,7 +160,7 @@ public class RuffyScripter implements RuffyCommands {
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!boundSucceeded) {
|
if (!boundSucceeded) {
|
||||||
log.error("No connection to ruffy. Pump control unavailable.");
|
log.info("No connection to ruffy. Pump control unavailable.");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -262,7 +262,7 @@ public class RuffyScripter implements RuffyCommands {
|
||||||
long cmdEndTime = System.currentTimeMillis();
|
long cmdEndTime = System.currentTimeMillis();
|
||||||
log.debug("Executing " + cmd + " took " + (cmdEndTime - cmdStartTime) + "ms");
|
log.debug("Executing " + cmd + " took " + (cmdEndTime - cmdStartTime) + "ms");
|
||||||
} catch (CommandException e) {
|
} catch (CommandException e) {
|
||||||
log.error("CommandException running command", e);
|
log.info("CommandException running command", e);
|
||||||
cmd.getResult().success = false;
|
cmd.getResult().success = false;
|
||||||
} catch (Exception e) {
|
} catch (Exception e) {
|
||||||
log.error("Unexpected exception running cmd", e);
|
log.error("Unexpected exception running cmd", e);
|
||||||
|
|
Loading…
Reference in a new issue