diff --git a/services/redis.py b/services/redis.py index 6589bb7f..07a95e4b 100644 --- a/services/redis.py +++ b/services/redis.py @@ -20,7 +20,7 @@ class RedisCache: print("[redis] " + command + " " + " ".join(args)) return await self._client.execute_command(command, *args, **kwargs) except Exception as e: - print(f"[redis] error: {e}") + print(f"[redis] error: {e}" + command + " " + " ".join(args)) import traceback traceback.print_exc()