File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
core/src/main/java/com/graphhopper/reader/osm Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -188,7 +188,7 @@ void preProcess(File osmFile) {
188
188
189
189
if (++tmpRelationCounter % 100_000 == 0 ) {
190
190
LOGGER .info (nf (tmpRelationCounter ) + " (preprocess), osmWayMap:" + nf (getRelFlagsMapSize ())
191
- + " " + Helper .getMemInfo ());
191
+ + ", " + Helper .getMemInfo ());
192
192
}
193
193
} else if (item .isType (ReaderElement .FILEHEADER )) {
194
194
final OSMFileHeader fileHeader = (OSMFileHeader ) item ;
@@ -283,7 +283,7 @@ private void writeOsmToGraph(File osmFile) {
283
283
throw new IllegalStateException ("Unknown type " + item .getType ());
284
284
}
285
285
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 ());
287
287
}
288
288
}
289
289
You can’t perform that action at this time.
0 commit comments