annotate mod_log_mark/mod_log_mark.lua @ 2006:cb810a2bca47

mod_block_outgoing: Allow stanzas to user's login host (e.g. disco queries)
author Matthew Wild <mwild1@gmail.com>
date Wed, 13 Jan 2016 16:10:27 +0000
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);