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