mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 21:57:45 +03:00
util.startup: Tweak function string representation
Mostly in order to avoid triggering the XML syntax highlighting in the console logger.
This commit is contained in:
parent
60ae919973
commit
026b2d6e88
1 changed files with 1 additions and 1 deletions
|
@ -233,7 +233,7 @@ function startup.set_function_metatable()
|
||||||
if info.isvararg then
|
if info.isvararg then
|
||||||
info[n_params+1] = "...";
|
info[n_params+1] = "...";
|
||||||
end
|
end
|
||||||
return ("function<%s:%d>(%s)"):format(info.short_src:match("[^\\/]*$"), info.linedefined, table.concat(info, ", "));
|
return ("function @%s:%d(%s)"):format(info.short_src:match("[^\\/]*$"), info.linedefined, table.concat(info, ", "));
|
||||||
end
|
end
|
||||||
debug.setmetatable(function() end, mt);
|
debug.setmetatable(function() end, mt);
|
||||||
end
|
end
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue