Skip to content

Commit

Permalink
Improve layer debug info
Browse files Browse the repository at this point in the history
  • Loading branch information
simonpoole committed Sep 10, 2023
1 parent 703d8eb commit 7a83ac9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/de/blau/android/DebugInformation.java
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ String getDebugText(String eol) {
if (ov instanceof MapTilesLayer || ov instanceof MapTilesOverlayLayer) {
TileLayerSource tileLayerConfiguration = ((MapTilesLayer<?>) ov).getTileLayerConfiguration();
if (tileLayerConfiguration != null) {
builder.append("In memory Tile Cache " + tileLayerConfiguration.getId() + " usage "
builder.append("In memory Tile Cache " + tileLayerConfiguration.getId() + " type " + tileLayerConfiguration.getType() + " tiles " + tileLayerConfiguration.getTileType() + " usage "
+ ((MapTilesLayer<?>) ov).getTileProvider().getCacheUsageInfo() + eol);
}
}
Expand Down

0 comments on commit 7a83ac9

Please sign in to comment.