Fix console logging of commands

This commit is contained in:
Zeva Rose 2022-04-19 18:27:00 -06:00
parent 12dfe8ab58
commit 964c3747f1

View file

@ -85,6 +85,7 @@ class Jarvis(Snake):
if isinstance(ctx, InteractionContext) and ctx.target_id:
kwargs["context target"] = ctx.target
args = " ".join(f"{k}:{v}" for k, v in kwargs.items())
args += " " + " ".join(args)
self.logger.debug(f"Running command `{name}` with args: {args or 'None'}")
async def _sync_domains(self) -> None: