Skip to content

Commit

Permalink
ci: lower log level for commands sent to Mochi
Browse files Browse the repository at this point in the history
  • Loading branch information
Tanguy Soto committed Mar 25, 2021
1 parent a1735e4 commit b6c62f7
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -475,7 +475,7 @@ private void sendMochiCommand(String command) {
if (mochiClient != null && !mochiClient.isClosed()) {
try {
mochiClient.getOutputStream().write(command.getBytes());
LOGGER.log(Level.INFO, String.format("Send command to MochiMochi: %s", command));
LOGGER.log(Level.FINE, String.format("Send command to MochiMochi: %s", command));
} catch (IOException e) {
LOGGER.log(Level.SEVERE, String.format("Error sending %s command to MochiMochi", command),
e);
Expand Down

0 comments on commit b6c62f7

Please sign in to comment.