From b8b711614805feac6d796c187e0e663003af09c7 Mon Sep 17 00:00:00 2001 From: HF Date: Thu, 2 Jan 2020 19:44:30 +0100 Subject: [PATCH] Log filename for chunk-tile creation for debugging tiles --- src/core/Tile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/Tile.js b/src/core/Tile.js index af94bc4..78ad55e 100644 --- a/src/core/Tile.js +++ b/src/core/Tile.js @@ -168,7 +168,7 @@ export async function createZoomTileFromChunk( .png({ options: { compressionLevel: 6 } }) .toFile(filename); logger.info( - `Tiling: Created Tile ${x} / ${y} with ${na.length} empty chunks`, + `Tiling: Created Tile ${filename} with ${na.length} empty chunks`, ); return true; }