Software / code / prosody
Comparison
plugins/mod_posix.lua @ 735:d247d061409a
mod_posix: logging fix
| author | Matthew Wild <mwild1@gmail.com> |
|---|---|
| date | Fri, 16 Jan 2009 05:41:59 +0000 |
| parent | 734:cfb4ec5cba5e |
| child | 991:cd0d75de8345 |
comparison
equal
deleted
inserted
replaced
| 734:cfb4ec5cba5e | 735:d247d061409a |
|---|---|
| 1 | 1 |
| 2 local want_pposix_version = "0.3.0"; | 2 local want_pposix_version = "0.3.0"; |
| 3 | 3 |
| 4 local pposix = assert(require "util.pposix"); | 4 local pposix = assert(require "util.pposix"); |
| 5 if pposix._VERSION ~= want_pposix_version then log("warn", "Unknown version (%s) of binary pposix module, expected %s", tostring(pposix._VERSION), want_pposix_version); end | 5 if pposix._VERSION ~= want_pposix_version then module:log("warn", "Unknown version (%s) of binary pposix module, expected %s", tostring(pposix._VERSION), want_pposix_version); end |
| 6 | 6 |
| 7 local config_get = require "core.configmanager".get; | 7 local config_get = require "core.configmanager".get; |
| 8 local logger_set = require "util.logger".setwriter; | 8 local logger_set = require "util.logger".setwriter; |
| 9 | 9 |
| 10 module.host = "*"; -- we're a global module | 10 module.host = "*"; -- we're a global module |