Skip to content

Commit

Permalink
refactor: log the query at debug level
Browse files Browse the repository at this point in the history
  • Loading branch information
gtempus committed Jan 18, 2024
1 parent 5374f35 commit 5295fb8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/crud/async_db/vector_tiles/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ async def get_aggregated_tile(


async def _get_tile(query: Select) -> VectorTileResponse:
logger.warning(query)
logger.debug(query)
tile = await db.scalar(query)
return VectorTileResponse(content=tile, status_code=200)

Expand Down

0 comments on commit 5295fb8

Please sign in to comment.