Skip to content

Commit

Permalink
fix format string + log when a cached response is found
Browse files Browse the repository at this point in the history
  • Loading branch information
lollerfirst committed Oct 15, 2024
1 parent 1e98022 commit f8ee569
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cashu/mint/cache.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ def cache(self, expire):
def passthrough(func):
@functools.wraps(func)
async def wrapper(*args, **kwargs):
logger.debug("cache wrapper on route {func.__name__}")
logger.debug(f"cache wrapper on route {func.__name__}")
result = await func(*args, **kwargs)
return result
return wrapper
Expand Down

0 comments on commit f8ee569

Please sign in to comment.