Software / code / prosody-modules
File
mod_log_mark/mod_log_mark.lua @ 6268:a4d7fefa4a8b
mod_migrate_lastlog2: New module to automatically migrate data to mod_account_activity
| author | Matthew Wild <mwild1@gmail.com> |
|---|---|
| date | Wed, 28 May 2025 16:53:22 +0100 |
| parent | 2174:7be158b3376f |
line wrap: on
line source
module:set_global(); local log = _G.log; module:add_timer(60-os.date("%S"), function (now) log("info", "-- MARK --"); return 90 - ((now + 30) % 60); end);