diff --git a/hyperglass/api/routes.py b/hyperglass/api/routes.py index a3cf268..fc03c34 100644 --- a/hyperglass/api/routes.py +++ b/hyperglass/api/routes.py @@ -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)