Issue #11941 - reduce logs for DistributionTests

Signed-off-by: Lachlan Roberts <lachlan@webtide.com>
This commit is contained in:
Lachlan Roberts 2024-06-24 13:08:38 +10:00
parent 8a0c4da385
commit b98c070b0d
1 changed files with 1 additions and 1 deletions

View File

@ -200,7 +200,7 @@ public class ProcessWrapper implements AutoCloseable
String line; String line;
while ((line = reader.readLine()) != null) while ((line = reader.readLine()) != null)
{ {
LOG.info(line); LOG.debug(line);
logs.add(line); logs.add(line);
} }
} }