Skip to content

Commit

Permalink
fix: reduce the log level of the 'starting test runner' message (#367)
Browse files Browse the repository at this point in the history
The message is very verbose for the INFO log level, reduce it to CONFIG
  • Loading branch information
gtoison authored Nov 3, 2022
1 parent 85abbae commit 4efa00f
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
package org.infinitest.testrunner.process;

import static java.util.Arrays.asList;
import static java.util.logging.Level.INFO;
import static java.util.logging.Level.CONFIG;
import static org.infinitest.util.InfinitestUtils.log;

import java.io.IOException;
Expand Down Expand Up @@ -72,7 +72,7 @@ protected TcpSocketProcessCommunicator createCommunicator() {
Process startProcess(int port, RuntimeEnvironment environment, ClasspathArgumentBuilder classpathArgumentBuilder) throws IOException {

ProcessBuilder builder = buildProcess(port, environment, classpathArgumentBuilder);
log(INFO, "Starting TestRunner with configuration:\n"+buildTestProcessConfigurationMessage(builder));
log(CONFIG, "Starting TestRunner with configuration:\n"+buildTestProcessConfigurationMessage(builder));
try {
return builder.start();
} catch (IOException e) {
Expand Down

0 comments on commit 4efa00f

Please sign in to comment.