Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
佳 邓
Gitlab4j Api
Commits
7084df30
Commit
7084df30
authored
May 03, 2019
by
Greg Messner
Browse files
Cleaned up log output (#311).
parent
347809f6
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/test/java/org/gitlab4j/api/HelperUtils.java
View file @
7084df30
...
...
@@ -27,7 +27,7 @@ public class HelperUtils {
if
(
propertiesFile
.
exists
())
{
try
(
InputStream
input
=
new
FileInputStream
(
propertiesFile
))
{
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
;
}
catch
(
IOException
ioe
)
{
System
.
err
.
println
(
"Error loading base test properties, error="
+
ioe
.
getMessage
());
...
...
@@ -39,7 +39,7 @@ public class HelperUtils {
if
(
propertiesFile
.
exists
())
{
try
(
InputStream
input
=
new
FileInputStream
(
propertiesFile
))
{
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
;
}
catch
(
IOException
ioe
)
{
System
.
err
.
println
(
"Error loading overriding test properties, error="
+
ioe
.
getMessage
());
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment