mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
util.format: Restore "freeze" serialization behavior in logging
This was implied with the "debug" preset and does nice things like turn util.set objects into "set{a,b,c}" instead of the quite verbose thing you get otherwise.
This commit is contained in:
parent
328447c2b1
commit
9bbfb849b1
1 changed files with 1 additions and 0 deletions
|
@ -15,6 +15,7 @@ local dump = require"prosody.util.serialization".new({
|
||||||
fallback = function(v, why)
|
fallback = function(v, why)
|
||||||
return "_[[" .. (why or tostring(v)) .. "]] ";
|
return "_[[" .. (why or tostring(v)) .. "]] ";
|
||||||
end;
|
end;
|
||||||
|
freeze = true;
|
||||||
fatal = false;
|
fatal = false;
|
||||||
maxdepth = 5;
|
maxdepth = 5;
|
||||||
});
|
});
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue