annotate mod_log_mark/mod_log_mark.lua @ 1984:2ed6f6eeeaba

mod_storage_lmdb: Remove debugging
author Kim Alvefur <zash@zash.se>
date Sat, 19 Dec 2015 11:45:39 +0100
parents 02390829df1a
children d15df55f0a63
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
1869
02390829df1a mod_log_mark: Module that sends a line to the log once per minute
Kim Alvefur <zash@zash.se>
parents:
diff changeset
1 local log = _G.log;
02390829df1a mod_log_mark: Module that sends a line to the log once per minute
Kim Alvefur <zash@zash.se>
parents:
diff changeset
2
02390829df1a mod_log_mark: Module that sends a line to the log once per minute
Kim Alvefur <zash@zash.se>
parents:
diff changeset
3 module:add_timer(60-os.date("%S"), function ()
02390829df1a mod_log_mark: Module that sends a line to the log once per minute
Kim Alvefur <zash@zash.se>
parents:
diff changeset
4 log("info", "-- MARK --");
02390829df1a mod_log_mark: Module that sends a line to the log once per minute
Kim Alvefur <zash@zash.se>
parents:
diff changeset
5 return 60;
02390829df1a mod_log_mark: Module that sends a line to the log once per minute
Kim Alvefur <zash@zash.se>
parents:
diff changeset
6 end);