File

mod_traceback/mod_traceback.lua @ 6300:8d337dae5a62

mod_csi_grace_period: Fix readme again diff --git a/mod_csi_grace_period/README.md b/mod_csi_grace_period/README.md --- a/mod_csi_grace_period/README.md +++ b/mod_csi_grace_period/README.md @@ -20,5 +20,6 @@ included with Prosody. trunk* Works 13 Works 0.12 Works + ------- ------- *as of 2025-06-13
author Menel <menel@snikket.de>
date Fri, 13 Jun 2025 10:10:26 +0200
parent 5875:dde9d21a599f
line wrap: on
line source

module:set_global();

local traceback = require "util.debug".traceback;

local signal = module:get_option_string(module.name, "SIGUSR1");
module:hook("signal/" .. signal, function()
	module:log("info", "Received %s, writing traceback", signal);
	local f = io.open(prosody.paths.data .. "/traceback.txt", "a+");
	f:write(traceback(), "\n");
	f:close();
end);