mod_log_mark/mod_log_mark.lua
author Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
Tue, 04 Jan 2022 23:22:31 +0100
changeset 4851 a280878c4ef2
parent 2178 7be158b3376f
permissions -rw-r--r--
mod_bookmarks: So long, and thanks for all the fish!

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);