Skip to content

Commit

Permalink
reduce logs on exit
Browse files Browse the repository at this point in the history
  • Loading branch information
neodix42 committed Oct 24, 2024
1 parent 275f56d commit 06a3f1e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ public Pair<Process, Future<String>> execute(Node node, String... command) {

String resultInput = IOUtils.toString(p.getInputStream(), Charset.defaultCharset());
log.info("validator-engine-{} stopped", node.getNodeName());
log.debug("validator exit output: {} ", resultInput);
// log.debug("validator exit output: {} ", resultInput);
p.getInputStream().close();
p.getErrorStream().close();
p.getOutputStream().close();
Expand Down

0 comments on commit 06a3f1e

Please sign in to comment.