feat: log cmd args on execution

This commit is contained in:
2025-05-08 13:38:29 -03:00
parent e8c68ffded
commit 868663d33f
+1 -1
View File
@@ -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)