Skip to content

Commit

Permalink
Display a comprehensive message
Browse files Browse the repository at this point in the history
  • Loading branch information
sbrunner committed Jun 26, 2023
1 parent 6baa45f commit 65d7ce5
Showing 1 changed file with 12 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,18 @@ public TilePreparationInfo call() {
tiles.add(new SingleTilePreparationInfo(xIndex, yIndex, tileRequest));
}
} else {
LOGGER.debug("Tile out of bounds: {}", tileRequest);
LOGGER.debug(
"Tile '{}' bounds [{}, {}, {}, {}] out of tile cache bounds [{}, {}, {},"
+ " {}]",
tileRequest.getURI(),
tileBounds.getMinX(),
tileBounds.getMinY(),
tileBounds.getMaxX(),
tileBounds.getMaxY(),
tileCacheBounds.getMinX(),
tileCacheBounds.getMinY(),
tileCacheBounds.getMaxX(),
tileCacheBounds.getMaxY());
tiles.add(new SingleTilePreparationInfo(xIndex, yIndex, null));
}
}
Expand Down

0 comments on commit 65d7ce5

Please sign in to comment.