From e62ab1d4f8560ebe846cef1ad33ac92cc6dae33b Mon Sep 17 00:00:00 2001 From: Gabriel Tofvesson Date: Wed, 27 Nov 2024 23:47:07 +0100 Subject: [PATCH] Fix bug from merge conflict --- logging.lua | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/logging.lua b/logging.lua index 0d77757..40cf62b 100644 --- a/logging.lua +++ b/logging.lua @@ -224,13 +224,11 @@ function Logging.deepStringify(value) end function Logger:_doPrint(level, message, ...) - if LogLevel.isGreaterOrEqual(level, self.level) then - local result = { tostring(LogLevel[level]), Logging.deepStringify(message) } - for _,v in ipairs({...}) do - table.insert(result, Logging.deepStringify(v)) - end - self.output(table.concat(result, " ")) + local result = { tostring(LogLevel[level]), Logging.deepStringify(message) } + for _,v in ipairs({...}) do + table.insert(result, Logging.deepStringify(v)) end + self.output(table.concat(result, " "), level) end function Logger:trace(message, ...)