view mod_log_mark/mod_log_mark.lua @ 2923:9d53134a0b29

mod_register_web: Return reason for rejection if one was provided by another plugin during pre-registration checks
author Kim Alvefur <zash@zash.se>
date Sat, 10 Mar 2018 02:39:54 +0100
parents 7be158b3376f
children
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);