Add miising 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/0c70b77c Tree: http://git-wip-us.apache.org/repos/asf/logging-log4j2/tree/0c70b77c Diff: http://git-wip-us.apache.org/repos/asf/logging-log4j2/diff/0c70b77c
Branch: refs/heads/master Commit: 0c70b77c77075369d6003eccfdeb1cffc29f7a8a Parents: d418e52 Author: Gary Gregory <[email protected]> Authored: Mon Jul 16 10:09:53 2018 -0600 Committer: Gary Gregory <[email protected]> Committed: Mon Jul 16 10:09:53 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/0c70b77c/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 b92ad64..505febf 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(CLEANER_MARKER, "%s Deleted file %s: %s", file, deleted); return FileVisitResult.CONTINUE; } }
