diff options
author | Matthew Wild <mwild1@gmail.com> | 2009-11-25 05:11:10 +0000 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2009-11-25 05:11:10 +0000 |
commit | ff6b4c2c6d8823412bfc4ee7946cd2bf449ea174 (patch) | |
tree | f0046719bbec2124f94240c3627f60f663b41f52 /core/loggingmanager.lua | |
parent | c4742ed7810b3e10bfc6bdb55a11c31b3faf5426 (diff) | |
parent | 4e56a3c519bc0d46a3491ca18cb58c3e8dbb5ae9 (diff) | |
download | prosody-ff6b4c2c6d8823412bfc4ee7946cd2bf449ea174.tar.gz prosody-ff6b4c2c6d8823412bfc4ee7946cd2bf449ea174.zip |
Merge with 0.6 on prosody.imvault/0.6.00.6.0
Diffstat (limited to 'core/loggingmanager.lua')
-rw-r--r-- | core/loggingmanager.lua | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/core/loggingmanager.lua b/core/loggingmanager.lua index c26fdc71..4154e1a7 100644 --- a/core/loggingmanager.lua +++ b/core/loggingmanager.lua @@ -17,6 +17,12 @@ local math_max, rep = math.max, string.rep; local os_date, os_getenv = os.date, os.getenv; local getstyle, getstring = require "util.termcolours".getstyle, require "util.termcolours".getstring; +if os.getenv("__FLUSH_LOG") then + local io_flush = io.flush; + local _io_write = io_write; + io_write = function(...) _io_write(...); io_flush(); end +end + local config = require "core.configmanager"; local eventmanager = require "core.eventmanager"; local logger = require "util.logger"; |