Skip to content

Commit

Permalink
Make logging about container.log to be less verbose
Browse files Browse the repository at this point in the history
This logging entry can pollute test log sometimes that makes it more
challenging to diagnose issues.
  • Loading branch information
kokosing committed May 2, 2024
1 parent 572b46a commit f060427
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -640,7 +640,7 @@ public Environment build(EnvironmentListener listener)
private static Consumer<OutputFrame> writeContainerLogs(DockerContainer container, Path path)
{
Path containerLogFile = path.resolve(container.getLogicalName() + "/container.log");
log.info("Writing container %s logs to %s", container, containerLogFile);
log.debug("Writing container %s logs to %s", container, containerLogFile);

try {
ensurePathExists(containerLogFile.getParent());
Expand Down

0 comments on commit f060427

Please sign in to comment.