view mod_log_mark/mod_log_mark.lua @ 2054:b7c528027762

mod_storage_xmlarchive: Only try to close xmlfile if it has been opened (fixes traceback with limit=0)
author Kim Alvefur <zash@zash.se>
date Sun, 28 Feb 2016 16:23:30 +0100
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);