File

mod_log_mark/mod_log_mark.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 2174:7be158b3376f
line wrap: on
line source

module:set_global();

local log = _G.log;

module:add_timer(60-os.date("%S"), function (now)
	log("info", "-- MARK --");
	return 90 - ((now + 30) % 60);
end);