redis-log-fix

This commit is contained in:
Untone 2024-01-24 15:32:53 +03:00
parent 5d1c4f0084
commit 6415f86286

View File

@ -23,7 +23,7 @@ class RedisCache:
async def execute(self, command, *args, **kwargs):
if self._client:
try:
logger.debug(command + " " + " ".join(args))
logger.debug(f"{command} {args} {kwargs}")
r = await self._client.execute_command(command, *args, **kwargs)
logger.debug(type(r))
logger.debug(r)