diff options
author | Waqas Hussain <waqas20@gmail.com> | 2009-11-22 21:55:58 +0500 |
---|---|---|
committer | Waqas Hussain <waqas20@gmail.com> | 2009-11-22 21:55:58 +0500 |
commit | 4c8e3f457d16e6246f851c3f71ad0d957713d616 (patch) | |
tree | b605c894bb243376110c5b91607dc30c7ce47b61 /core/loggingmanager.lua | |
parent | 88f3737a7f70cfeac067fd9682a22bbd86872fff (diff) | |
parent | 889562f945cc57d19db944d6085fdfe5683dea5d (diff) | |
download | prosody-4c8e3f457d16e6246f851c3f71ad0d957713d616.tar.gz prosody-4c8e3f457d16e6246f851c3f71ad0d957713d616.zip |
Merged with 0.6.
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"; |