redis-debug-fix
This commit is contained in:
parent
751d91562e
commit
91025d453f
|
@ -23,7 +23,7 @@ class RedisCache:
|
||||||
async def execute(self, command, *args, **kwargs):
|
async def execute(self, command, *args, **kwargs):
|
||||||
if self._client:
|
if self._client:
|
||||||
try:
|
try:
|
||||||
logger.debug(command + " " + " ".join(args))
|
logger.debug(f"{command} {args} {kwargs}")
|
||||||
r = await self._client.execute_command(command, *args, **kwargs)
|
r = await self._client.execute_command(command, *args, **kwargs)
|
||||||
logger.debug(type(r))
|
logger.debug(type(r))
|
||||||
logger.debug(r)
|
logger.debug(r)
|
||||||
|
|
Loading…
Reference in New Issue
Block a user