Changed info display to debug.
This commit is contained in:
parent
09ceb50e58
commit
0c7d2fbf17
1 changed files with 4 additions and 4 deletions
|
@ -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.
|
||||||
|
|
Loading…
Reference in a new issue