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