Merge pull request #11948 from jetty/fix/12.0.x/11941/distribution-test-logs

Issue #11941 - reduce logs for DistributionTests
This commit is contained in:
Lachlan 2024-06-24 15:39:20 +10:00 committed by GitHub
commit 865b72688a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

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