Skip to content

Commit

Permalink
add tile ids to logged error info
Browse files Browse the repository at this point in the history
  • Loading branch information
trautmane committed Apr 3, 2024
1 parent 2c00c6c commit c230ea1
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,8 @@ public void compareAndLogErrors() throws IOException {

final double error = pairWithError.getValue();
final String url = buildProblemAreaNgUrl(renderUrl, stackMetaData, pairBounds);
LOG.info("pZ: {}, qZ: {}, error: {}, ng: {}", p.getZ(), q.getZ(), error, url);
LOG.info("pZ: {}, pTileId: {}, qZ: {}, qTileId: {}, error: {}, ng: {}",
p.getZ(), p.getTileId(), q.getZ(), q.getTileId(), error, url);
}
}
}
Expand Down

0 comments on commit c230ea1

Please sign in to comment.