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:
Kim Alvefur 2023-03-26 00:33:20 +01:00
parent 328447c2b1
commit 9bbfb849b1

View file

@ -15,6 +15,7 @@ local dump = require"prosody.util.serialization".new({
fallback = function(v, why)
return "_[[" .. (why or tostring(v)) .. "]] ";
end;
freeze = true;
fatal = false;
maxdepth = 5;
});