You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@logging.apache.org by gg...@apache.org on 2018/07/31 20:33:49 UTC

logging-log4j2 git commit: Add missing EOLs.

Repository: logging-log4j2
Updated Branches:
  refs/heads/release-2.x e40c2570e -> 365593315


Add missing EOLs.

Project: http://git-wip-us.apache.org/repos/asf/logging-log4j2/repo
Commit: http://git-wip-us.apache.org/repos/asf/logging-log4j2/commit/36559331
Tree: http://git-wip-us.apache.org/repos/asf/logging-log4j2/tree/36559331
Diff: http://git-wip-us.apache.org/repos/asf/logging-log4j2/diff/36559331

Branch: refs/heads/release-2.x
Commit: 36559331506735cf80bab67fba8fd56951425560
Parents: e40c257
Author: Gary Gregory <gg...@apache.org>
Authored: Tue Jul 31 14:33:46 2018 -0600
Committer: Gary Gregory <gg...@apache.org>
Committed: Tue Jul 31 14:33:46 2018 -0600

----------------------------------------------------------------------
 .../java/org/apache/logging/log4j/junit/CleanFolders.java    | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/logging-log4j2/blob/36559331/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 1f082b5..dce5fe9 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
@@ -45,9 +45,9 @@ public class CleanFolders extends AbstractExternalFileCleaner {
 
 		@Override
 		public FileVisitResult postVisitDirectory(final Path dir, final IOException exc) throws IOException {
-			printf("%s Deleting directory %s", CLEANER_MARKER, dir);
+			printf("%s Deleting directory %s\n", CLEANER_MARKER, dir);
 			final boolean deleted = Files.deleteIfExists(dir);
-			printf("%s Deleted directory %s: %s", CLEANER_MARKER, dir, deleted);
+			printf("%s Deleted directory %s: %s\n", CLEANER_MARKER, dir, deleted);
 			return FileVisitResult.CONTINUE;
 		}
 
@@ -59,9 +59,9 @@ public class CleanFolders extends AbstractExternalFileCleaner {
 
 		@Override
 		public FileVisitResult visitFile(final Path file, final BasicFileAttributes attrs) throws IOException {
-			printf("%s Deleting file %s with %s", CLEANER_MARKER, file, attrs);
+			printf("%s Deleting file %s with %s\n", CLEANER_MARKER, file, attrs);
 			final boolean deleted = Files.deleteIfExists(file);
-			printf("%s Deleted file %s: %s", CLEANER_MARKER, file, deleted);
+			printf("%s Deleted file %s: %s\n", CLEANER_MARKER, file, deleted);
 			return FileVisitResult.CONTINUE;
 		}
 	}