1
0
mirror of https://github.com/checktheroads/hyperglass synced 2024-05-11 05:55:08 +00:00

add logging for cache hit

This commit is contained in:
checktheroads
2020-04-19 09:50:52 -07:00
parent 7e87cff7fc
commit 91a89865b9

View File

@@ -61,6 +61,8 @@ async def query(query_data: Query, request: Request):
cached = False
if cache_response:
log.debug("Query {q} exists in cache", q=cache_key)
# If a cached response exists, reset the expiration time.
await cache.expire(cache_key, seconds=cache_timeout)