Commit 7084df30 authored by Greg Messner's avatar Greg Messner
Browse files

Cleaned up log output (#311).

parent 347809f6
...@@ -27,7 +27,7 @@ public class HelperUtils { ...@@ -27,7 +27,7 @@ public class HelperUtils {
if (propertiesFile.exists()) { if (propertiesFile.exists()) {
try (InputStream input = new FileInputStream(propertiesFile)) { try (InputStream input = new FileInputStream(propertiesFile)) {
testProperties.load(input); testProperties.load(input);
System.out.println("Loaded base test properties from: " + propertiesFile.getAbsolutePath()); System.out.format("Loaded base test properties from: %n%s%n", propertiesFile.getAbsolutePath());
propertiesLoaded = true; propertiesLoaded = true;
} catch (IOException ioe) { } catch (IOException ioe) {
System.err.println("Error loading base test properties, error=" + ioe.getMessage()); System.err.println("Error loading base test properties, error=" + ioe.getMessage());
...@@ -39,7 +39,7 @@ public class HelperUtils { ...@@ -39,7 +39,7 @@ public class HelperUtils {
if (propertiesFile.exists()) { if (propertiesFile.exists()) {
try (InputStream input = new FileInputStream(propertiesFile)) { try (InputStream input = new FileInputStream(propertiesFile)) {
testProperties.load(input); testProperties.load(input);
System.out.println("Loaded overriding test properties from: " + propertiesFile.getAbsolutePath()); System.out.format("Loaded overriding test properties from: %n%s%n", propertiesFile.getAbsolutePath());
propertiesLoaded = true; propertiesLoaded = true;
} catch (IOException ioe) { } catch (IOException ioe) {
System.err.println("Error loading overriding test properties, error=" + ioe.getMessage()); System.err.println("Error loading overriding test properties, error=" + ioe.getMessage());
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment