From 6f7775f602881de8577377dc90f329c8aa86122a Mon Sep 17 00:00:00 2001 From: Gabriel Tofvesson Date: Mon, 14 Oct 2024 06:05:05 +0200 Subject: [PATCH] Fix stringify spacing --- logging.lua | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/logging.lua b/logging.lua index d3af8e7..c0474f8 100644 --- a/logging.lua +++ b/logging.lua @@ -151,7 +151,9 @@ function Logger:_doPrint(level, message, ...) if LogLevel.isGreaterOrEqual(level, self.level) then local result = { tostring(LogLevel[level]), message } for _,v in ipairs({...}) do - _simpleStringify(cloneNonRecursive(v, {}), result) + local collect = {} + _simpleStringify(cloneNonRecursive(v, {}), collect) + table.insert(result, table.concat(collect)) end self.output(table.concat(result, " ")) end