view mod_traceback/mod_traceback.lua @ 5940:83787415fc8d

mod_muc_slow_mode: update readme file.
author John Livingston <git@john-livingston.fr>
date Fri, 26 Jul 2024 16:00:03 +0200
parents dde9d21a599f
children
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);