From 868663d33fcd8f5ed7f90c4d59b446c163204c2d Mon Sep 17 00:00:00 2001 From: neru Date: Thu, 8 May 2025 13:38:29 -0300 Subject: [PATCH] feat: log cmd args on execution --- lua/CC Tweaked/tutel/tutel-host.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lua/CC Tweaked/tutel/tutel-host.lua b/lua/CC Tweaked/tutel/tutel-host.lua index 0ff88ed..2f24531 100644 --- a/lua/CC Tweaked/tutel/tutel-host.lua +++ b/lua/CC Tweaked/tutel/tutel-host.lua @@ -286,7 +286,7 @@ function processCommand() end if consoleCommands[cmd] then - log.info("> %s", cmd) + log.info("> %s %s", cmd, table.concat(args, " ")) consoleCommands[cmd](args) else log.warning("Unknown command: %s", cmd)