Improve warning and debug output in plugin

This commit is contained in:
Lucien Greathouse
2021-11-20 17:05:45 -05:00
parent e136529ff0
commit 173dc12cb3
2 changed files with 7 additions and 3 deletions

View File

@@ -63,7 +63,7 @@ local function applyPatch(instanceMap, patch)
local failedToReify = reify(instanceMap, patch.added, id, parentInstance)
if not PatchSet.isEmpty(failedToReify) then
Log.debug("Failed to reify as part of applying a patch: {}", failedToReify)
Log.debug("Failed to reify as part of applying a patch: {:#?}", failedToReify)
PatchSet.assign(unappliedPatch, failedToReify)
end
end