Skip to content

Commit 49d462c

Browse files
author
Mike Dobozy
committed
Stripped executable check on insufficient perms test that was causing issues.
1 parent e8dd0a9 commit 49d462c

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

ext/src/main/java/org/jboss/logmanager/ext/handlers/PeriodicRotatingFileHandler.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -247,8 +247,7 @@ private void pruneFiles(File baseFile) throws IOException {
247247
.filter(File::canWrite)
248248
.sorted(Comparator.comparingLong(File::lastModified).thenComparing(File::getName))
249249
.collect(Collectors.toList());
250-
251-
System.out.println("Pruneables:");
250+
252251
pruneables.forEach(p ->
253252
System.out.println("Path " + p + " has last modified date " + p.lastModified() + " and size " +p.length())
254253
);

0 commit comments

Comments
 (0)