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
local result, reason = pcall(fs.delete, LOCK_FILE)
if not result then
print("ERROR: Lock file could not be deleted: " .. reason)
Logger:error("ERROR: Lock file could not be deleted: " .. reason)
end
return result

View File

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