1
0
Fork 1
mirror of https://github.com/thatmattlove/hyperglass.git synced 2026-01-17 08:48:05 +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)