view mod_log_mark/mod_log_mark.lua @ 2210:126d79bf079b

mod_http_roster_admin: Also log if the status error is 0 (Connection refused) (Also replaced spaced indentation with tabs, as is the convention)
author JC Brand <jcbrand@minddistrict.com>
date Tue, 14 Jun 2016 14:13:30 +0000
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);