Skip to content

Commit

Permalink
Set the start command logging to debug level.
Browse files Browse the repository at this point in the history
  • Loading branch information
khituras committed Aug 28, 2019
1 parent b61df46 commit 90d3511
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/de/julielab/ipc/javabridge/StdioBridge.java
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ public void start() throws IOException {
errorStreamConsumer = new
ErrorStreamConsumer(process.getErrorStream(), options.getTerminationSignalFromErrorStream(), Thread.currentThread());
errorStreamConsumer.start();
log.info("Started process with arguments {}", Arrays.toString(arguments));
log.debug("Started process with arguments {}", Arrays.toString(arguments));
BufferedInputStream bis = new BufferedInputStream(process.getInputStream());
BufferedOutputStream bos = new BufferedOutputStream(process.getOutputStream());

Expand Down

0 comments on commit 90d3511

Please sign in to comment.