Changed info display to debug.

This commit is contained in:
Christian P. MOMON 2021-03-16 01:10:52 +01:00
parent 09ceb50e58
commit 0c7d2fbf17

View file

@ -203,7 +203,7 @@ public class CmdExec
{ {
int result; int result;
logger.info("CmdExec(command) = [" + command + "]"); logger.debug("CmdExec(command) = [" + command + "]");
String[] commands = CommandSplitter.split(command); String[] commands = CommandSplitter.split(command);
@ -251,8 +251,8 @@ public class CmdExec
{ {
int result; int result;
logger.info("CmdExec(command[]) = [" + StringsUtils.toStringSeparatedBy(command, " ") + "]"); logger.debug("CmdExec(command[]) = [" + StringsUtils.toStringSeparatedBy(command, " ") + "]");
logger.info("CmdExec(command[]) = [" + StringsUtils.toStringWithBrackets(command) + "]"); logger.debug("CmdExec(command[]) = [" + StringsUtils.toStringWithBrackets(command) + "]");
try try
{ {
@ -272,7 +272,7 @@ public class CmdExec
// Wait and manage the exit value. // Wait and manage the exit value.
this.exitValue = process.waitFor(); this.exitValue = process.waitFor();
logger.info("ExitValue: {}", this.exitValue); logger.debug("ExitValue: {}", this.exitValue);
// Sometimes, process ends before Gobblers read its outpout, so we // Sometimes, process ends before Gobblers read its outpout, so we
// must wait them. // must wait them.