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, ...)