Re-index log levels
This commit is contained in:
parent
29adfecea6
commit
dd0d215b1c
@ -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
|
||||
|
14
logging.lua
14
logging.lua
@ -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 ")
|
||||
|
Loading…
x
Reference in New Issue
Block a user