diff --git a/cashu/mint/cache.py b/cashu/mint/cache.py index 9267ac6b..a27a420e 100644 --- a/cashu/mint/cache.py +++ b/cashu/mint/cache.py @@ -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