Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
TIKA-3210 -- info -> debug on child process' commandline
  • Loading branch information
tballison committed Oct 19, 2020
1 parent ba20bd5 commit 120d596
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -407,7 +407,7 @@ private Process startProcess(String[] args, int numRestarts, Path childStatusFil
argList.add("-child");
argList.add("--numRestarts");
argList.add(Integer.toString(numRestarts));
LOG.info("child process commandline: " +argList.toString());
LOG.debug("child process commandline: " +argList.toString());
builder.command(argList);
Process process = builder.start();
//redirect stdout to parent stderr to avoid error msgs
Expand Down

0 comments on commit 120d596

Please sign in to comment.