Track LogPlain in clone
This commit is contained in:
parent
9185d1dad4
commit
0d47cfcf41
13
logging.lua
13
logging.lua
@ -104,10 +104,12 @@ function RecursionSentinel.remove(knownTables, value)
|
|||||||
knownTables[value] = nil
|
knownTables[value] = nil
|
||||||
end
|
end
|
||||||
|
|
||||||
local function cloneNonRecursive(value, sentinels)
|
local function cloneNonRecursive(inValue, sentinels)
|
||||||
if type(value) == "table" then
|
if type(inValue) == "table" then
|
||||||
|
local wrapLogPlain = LogPlain.is(inValue) and function(v) return LogPlain.of(v, inValue.deep) end or function(v) return v end
|
||||||
|
local value = LogPlain.getValue(inValue)
|
||||||
if RecursionSentinel.isKnown(sentinels, value) then
|
if RecursionSentinel.isKnown(sentinels, value) then
|
||||||
return RecursionSentinel.getSentinel(sentinels, value)
|
return wrapLogPlain(RecursionSentinel.getSentinel(sentinels, value))
|
||||||
end
|
end
|
||||||
|
|
||||||
local sentinel = RecursionSentinel.getSentinel(sentinels, value)
|
local sentinel = RecursionSentinel.getSentinel(sentinels, value)
|
||||||
@ -121,9 +123,9 @@ local function cloneNonRecursive(value, sentinels)
|
|||||||
RecursionSentinel.remove(sentinels, sentinel.table)
|
RecursionSentinel.remove(sentinels, sentinel.table)
|
||||||
|
|
||||||
sentinel.value = clone
|
sentinel.value = clone
|
||||||
return sentinel.value
|
return wrapLogPlain(sentinel.value)
|
||||||
else
|
else
|
||||||
return value
|
return inValue
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
@ -137,6 +139,7 @@ local function _simpleStringify(inValue, builder, ignoreGlobals, skipFunctions,
|
|||||||
local isPlain = plain or LogPlain.is(inValue)
|
local isPlain = plain or LogPlain.is(inValue)
|
||||||
local isDeep = plain or LogPlain.isDeep(inValue)
|
local isDeep = plain or LogPlain.isDeep(inValue)
|
||||||
if type(value) == "table" then
|
if type(value) == "table" then
|
||||||
|
table.insert(builder, tostring(getmetatable(inValue)))
|
||||||
if not isPlain then
|
if not isPlain then
|
||||||
table.insert(builder, "<")
|
table.insert(builder, "<")
|
||||||
end
|
end
|
||||||
|
Loading…
x
Reference in New Issue
Block a user