Skip to content

Commit

Permalink
temp: bump tileserver logging level
Browse files Browse the repository at this point in the history
  • Loading branch information
joaquimds committed Jul 2, 2024
1 parent be4cda5 commit cfb3429
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions hub/views/vector_tiles.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,14 +61,14 @@ class ExternalDataSourceTileView(MVTView):
async def get(self, request, z, x, y, *args, **kwargs):
try:
id = self.get_id()
logger.debug(f"Tile request received: {z} {x} {y} {id}")
logger.info(f"Tile request received: {z} {x} {y} {id}")
response = await sync_to_async(super().get)(
request, z, x, y, *args, **kwargs
)
logger.debug(f"Tile request completed: {z} {x} {y} {id}")
logger.info(f"Tile request completed: {z} {x} {y} {id}")
return response
except CancelledError:
logger.debug(f"Tile request cancelled: {z} {x} {y} {id}")
logger.info(f"Tile request cancelled: {z} {x} {y} {id}")
raise

def get_id(self):
Expand Down

0 comments on commit cfb3429

Please sign in to comment.