Skip to content

Commit f5b5aa5

Browse files
author
Sean Sullivan
committed
log url when an exception happens so we can recreate it easily
1 parent 3bffd52 commit f5b5aa5

File tree

1 file changed

+1
-1
lines changed
  • elastic_datashader/routers

1 file changed

+1
-1
lines changed

elastic_datashader/routers/tms.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -228,7 +228,7 @@ def generate_tile_to_cache(idx: str, x: int, y: int, z: int, params, parameter_h
228228
except Exception as ex: # pylint: disable=W0703
229229
logger.error(
230230
"Failed to generate tile %s: %s",
231-
tile_name(idx, x, y, z, parameter_hash),
231+
request.url,
232232
str(ex)
233233
)
234234
error_info = {**base_tile_info, 'error': repr(ex)}

0 commit comments

Comments
 (0)