Fix LogPlain parsing
This commit is contained in:
parent
569a4370c0
commit
b5fd24740b
@ -105,9 +105,9 @@ function RecursionSentinel.remove(knownTables, value)
|
||||
end
|
||||
|
||||
local function cloneNonRecursive(inValue, sentinels)
|
||||
if type(inValue) == "table" then
|
||||
local value = LogPlain.getValue(inValue)
|
||||
if type(value) == "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
|
||||
return wrapLogPlain(RecursionSentinel.getSentinel(sentinels, value))
|
||||
end
|
||||
|
Loading…
x
Reference in New Issue
Block a user