From 964c3747f10dd0d9d875b69fa88fffc2408e0b47 Mon Sep 17 00:00:00 2001 From: Zevaryx Date: Tue, 19 Apr 2022 18:27:00 -0600 Subject: [PATCH] Fix console logging of commands --- jarvis/client.py | 1 + 1 file changed, 1 insertion(+) diff --git a/jarvis/client.py b/jarvis/client.py index 3829b03..357cadc 100644 --- a/jarvis/client.py +++ b/jarvis/client.py @@ -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: