Skip to content
This repository was archived by the owner on Jan 10, 2020. It is now read-only.

Commit 3f165a7

Browse files
committed
test
1 parent 9fcb1da commit 3f165a7

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

src/test/java/org/arangodb/objectmapper/test/BaseTestCase.java

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -110,8 +110,10 @@ private Properties loadPropertiesFromFile() {
110110
InputStream resourceAsStream = BaseTestCase.class.getResourceAsStream("/arangodb.properties");
111111
props.load(resourceAsStream);
112112

113-
LOG.info("Load" + props.size() +" Properties from " + BaseTestCase.class.getResource("/arangodb.properties").getFile());
114-
113+
LOG.info(props.toString());
114+
115+
LOG.info("Load " + props.size() +" Properties from " + BaseTestCase.class.getResource("/arangodb.properties").getFile());
116+
115117
} catch (Exception e) {
116118

117119
LOG.warn("Cant read Properties from File", e);

0 commit comments

Comments
 (0)