diff --git a/cashu/mint/cache.py b/cashu/mint/cache.py index a27a420e..b7400fa7 100644 --- a/cashu/mint/cache.py +++ b/cashu/mint/cache.py @@ -39,6 +39,7 @@ async def wrapper(request, payload): logger.debug(f"KEY: {key}") # Check if we have a value under this key if await self.redis.exists(key): + logger.info("Returning a cached response...") return json.loads(await self.redis.get(key)) result = await func(request, payload) # Cache a successful result for `expire` seconds