util.error: Add a 'source' parameter where origin module can be mentioned
authorKim Alvefur <zash@zash.se>
Fri, 28 Aug 2020 13:54:16 +0200
changeset 11057 04ad9555c799
parent 11056 1f42b08b134f
child 11058 ad07152d7bde
util.error: Add a 'source' parameter where origin module can be mentioned
util/error.lua
--- a/util/error.lua	Fri Aug 28 12:54:31 2020 +0100
+++ b/util/error.lua	Fri Aug 28 13:54:16 2020 +0200
@@ -33,7 +33,7 @@
 -- Should the `type` be restricted to the stanza error types or free-form?
 -- What to set `type` to for stream errors or SASL errors? Those don't have a 'type' attr.
 
-local function new(e, context, registry)
+local function new(e, context, registry, source)
 	local template = (registry and registry[e]) or e or {};
 	context = context or template.context or { _error_id = e };
 
@@ -48,6 +48,7 @@
 		code = template.code;
 
 		context = context or template.context or { _error_id = e };
+		source = source;
 	}, error_mt);
 end