unread-counter-fix

This commit is contained in:
2023-10-13 15:10:56 +03:00
parent 882ff39f28
commit f5da6d450b
2 changed files with 5 additions and 7 deletions

View File

@@ -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}" + command + " " + " ".join(args))
print(f"[redis] ERROR: {e} with: " + command + " " + " ".join(args))
import traceback
traceback.print_exc()