view mod_log_mark/mod_log_mark.lua @ 1909:c7389fe74de7

mod_cloud_notify: Make inclusion of message sender and body optional via config option
author Kim Alvefur <zash@zash.se>
date Wed, 14 Oct 2015 14:07:57 +0200
parents 02390829df1a
children d15df55f0a63
line wrap: on
line source

local log = _G.log;

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