Skip to content

Commit 5c02f7b

Browse files
committed
minor fixes to log message
1 parent 9fc2bc8 commit 5c02f7b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

core/src/main/java/com/graphhopper/reader/osm/OSMReader.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,7 @@ void preProcess(File osmFile) {
188188

189189
if (++tmpRelationCounter % 100_000 == 0) {
190190
LOGGER.info(nf(tmpRelationCounter) + " (preprocess), osmWayMap:" + nf(getRelFlagsMapSize())
191-
+ " " + Helper.getMemInfo());
191+
+ ", " + Helper.getMemInfo());
192192
}
193193
} else if (item.isType(ReaderElement.FILEHEADER)) {
194194
final OSMFileHeader fileHeader = (OSMFileHeader) item;
@@ -283,7 +283,7 @@ private void writeOsmToGraph(File osmFile) {
283283
throw new IllegalStateException("Unknown type " + item.getType());
284284
}
285285
if (++counter % 200_000_000 == 0) {
286-
LOGGER.info(nf(counter) + ", locs:" + nf(locations) + Helper.getMemInfo());
286+
LOGGER.info(nf(counter) + ", locs:" + nf(locations) + ", " + Helper.getMemInfo());
287287
}
288288
}
289289

0 commit comments

Comments
 (0)