We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e8dd0a9 commit 49d462cCopy full SHA for 49d462c
ext/src/main/java/org/jboss/logmanager/ext/handlers/PeriodicRotatingFileHandler.java
@@ -247,8 +247,7 @@ private void pruneFiles(File baseFile) throws IOException {
247
.filter(File::canWrite)
248
.sorted(Comparator.comparingLong(File::lastModified).thenComparing(File::getName))
249
.collect(Collectors.toList());
250
-
251
- System.out.println("Pruneables:");
+
252
pruneables.forEach(p ->
253
System.out.println("Path " + p + " has last modified date " + p.lastModified() + " and size " +p.length())
254
);
0 commit comments