Repository: logging-log4j2 Updated Branches: refs/heads/release-2.x d738c178d -> a9934b750
Add missing arg. Project: http://git-wip-us.apache.org/repos/asf/logging-log4j2/repo Commit: http://git-wip-us.apache.org/repos/asf/logging-log4j2/commit/a9934b75 Tree: http://git-wip-us.apache.org/repos/asf/logging-log4j2/tree/a9934b75 Diff: http://git-wip-us.apache.org/repos/asf/logging-log4j2/diff/a9934b75 Branch: refs/heads/release-2.x Commit: a9934b7507bf3b5a2b623ca97214baed2a9d0fbe Parents: d738c17 Author: Gary Gregory <[email protected]> Authored: Mon Jul 16 10:17:03 2018 -0600 Committer: Gary Gregory <[email protected]> Committed: Mon Jul 16 10:17:03 2018 -0600 ---------------------------------------------------------------------- .../src/test/java/org/apache/logging/log4j/junit/CleanFolders.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/logging-log4j2/blob/a9934b75/log4j-core/src/test/java/org/apache/logging/log4j/junit/CleanFolders.java ---------------------------------------------------------------------- diff --git a/log4j-core/src/test/java/org/apache/logging/log4j/junit/CleanFolders.java b/log4j-core/src/test/java/org/apache/logging/log4j/junit/CleanFolders.java index b13143c..1f082b5 100644 --- a/log4j-core/src/test/java/org/apache/logging/log4j/junit/CleanFolders.java +++ b/log4j-core/src/test/java/org/apache/logging/log4j/junit/CleanFolders.java @@ -61,7 +61,7 @@ public class CleanFolders extends AbstractExternalFileCleaner { public FileVisitResult visitFile(final Path file, final BasicFileAttributes attrs) throws IOException { printf("%s Deleting file %s with %s", CLEANER_MARKER, file, attrs); final boolean deleted = Files.deleteIfExists(file); - printf("%s Deleted file %s: %s", file, deleted); + printf("%s Deleted file %s: %s", CLEANER_MARKER, file, deleted); return FileVisitResult.CONTINUE; } }
