From de74c5165e7c6ca2072eeccfcac6ad3f384af57e Mon Sep 17 00:00:00 2001 From: EthanC <16727756+EthanC@users.noreply.github.com> Date: Sun, 2 Jun 2024 08:40:50 -0500 Subject: [PATCH] Fix for excessive command expansion logging --- core/formatters.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/formatters.py b/core/formatters.py index 1c0f211..0e1a723 100644 --- a/core/formatters.py +++ b/core/formatters.py @@ -77,7 +77,7 @@ def ExpandCommand( if format: result = f"`{result}`" - logger.debug(f"Expanded command {ctx.command} to {result}") + logger.debug(f"Expanded command {ctx.command.name} to {result}") return result