# HG changeset patch # User Kim Alvefur # Date 1598615656 -7200 # Node ID 04ad9555c799b0f769f06759f4058c6bb8b979f1 # Parent 1f42b08b134f1c0e094e23fc6fba33509a0d0bdf util.error: Add a 'source' parameter where origin module can be mentioned diff -r 1f42b08b134f -r 04ad9555c799 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