Re-index log levels

This commit is contained in:
Gabriel Tofvesson 2024-10-14 15:09:05 +02:00
parent 29adfecea6
commit dd0d215b1c
2 changed files with 8 additions and 8 deletions

View File

@ -45,7 +45,7 @@ local function unlock()
-- Delete lock file -- Delete lock file
local result, reason = pcall(fs.delete, LOCK_FILE) local result, reason = pcall(fs.delete, LOCK_FILE)
if not result then if not result then
print("ERROR: Lock file could not be deleted: " .. reason) Logger:error("ERROR: Lock file could not be deleted: " .. reason)
end end
return result return result

View File

@ -1,12 +1,12 @@
local Logging = {} local Logging = {}
local LogLevel = { local LogLevel = {
TRACE = 0, TRACE = 1,
DEBUG = 1, DEBUG = 2,
INFO = 2, INFO = 3,
WARNING = 3, WARNING = 4,
CRITICAL = 4, CRITICAL = 5,
ERROR = 5 ERROR = 6
} }
for k,v in pairs(LogLevel) do for k,v in pairs(LogLevel) do
@ -147,7 +147,7 @@ local function _simpleStringify(inValue, builder, ignoreGlobals, skipFunctions,
table.insert(builder, G_[value]) table.insert(builder, G_[value])
elseif RecursionSentinel.isSentinel(value) then elseif RecursionSentinel.isSentinel(value) then
if isPlain then if isPlain then
table.insert(builder, "recurse_") table.insert(builder, "<recurse_")
table.insert(builder, tostring(value.index)) table.insert(builder, tostring(value.index))
else else
table.insert(builder, "recurse ") table.insert(builder, "recurse ")