mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 05:37:39 +03:00
util.format: Tweak serialization of %q formatted entries
Improves serialization of function references especially, the built-in default handling of that in util.serialization is not the most informative. Now, along with the function metatable from util.startup, the actual function can be found by filename and line number.
This commit is contained in:
parent
026b2d6e88
commit
328447c2b1
1 changed files with 8 additions and 1 deletions
|
@ -10,7 +10,14 @@ local unpack = table.unpack;
|
|||
local pack = table.pack;
|
||||
local valid_utf8 = require "prosody.util.encodings".utf8.valid;
|
||||
local type = type;
|
||||
local dump = require "prosody.util.serialization".new("debug");
|
||||
local dump = require"prosody.util.serialization".new({
|
||||
preset = "compact";
|
||||
fallback = function(v, why)
|
||||
return "_[[" .. (why or tostring(v)) .. "]] ";
|
||||
end;
|
||||
fatal = false;
|
||||
maxdepth = 5;
|
||||
});
|
||||
local num_type = math.type;
|
||||
|
||||
-- In Lua 5.3+ these formats throw an error if given a float
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue