Skip to content

Commit 7084df3

Browse files
committed
Cleaned up log output (#311).
1 parent 347809f commit 7084df3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/test/java/org/gitlab4j/api/HelperUtils.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ public class HelperUtils {
2727
if (propertiesFile.exists()) {
2828
try (InputStream input = new FileInputStream(propertiesFile)) {
2929
testProperties.load(input);
30-
System.out.println("Loaded base test properties from: " + propertiesFile.getAbsolutePath());
30+
System.out.format("Loaded base test properties from: %n%s%n", propertiesFile.getAbsolutePath());
3131
propertiesLoaded = true;
3232
} catch (IOException ioe) {
3333
System.err.println("Error loading base test properties, error=" + ioe.getMessage());
@@ -39,7 +39,7 @@ public class HelperUtils {
3939
if (propertiesFile.exists()) {
4040
try (InputStream input = new FileInputStream(propertiesFile)) {
4141
testProperties.load(input);
42-
System.out.println("Loaded overriding test properties from: " + propertiesFile.getAbsolutePath());
42+
System.out.format("Loaded overriding test properties from: %n%s%n", propertiesFile.getAbsolutePath());
4343
propertiesLoaded = true;
4444
} catch (IOException ioe) {
4545
System.err.println("Error loading overriding test properties, error=" + ioe.getMessage());

0 commit comments

Comments
 (0)