aboutsummaryrefslogtreecommitdiffstats
path: root/core/loggingmanager.lua
diff options
context:
space:
mode:
authorMatthew Wild <mwild1@gmail.com>2009-05-05 14:19:20 +0100
committerMatthew Wild <mwild1@gmail.com>2009-05-05 14:19:20 +0100
commit7f04c5117e674ad8ca5bd4621fa30937fa59d7fa (patch)
treeecd19227f6c49d248c20c823fa54bd528148b1c3 /core/loggingmanager.lua
parentbff3101d36f42871243f3190808f3b1eeb0c13f4 (diff)
downloadprosody-7f04c5117e674ad8ca5bd4621fa30937fa59d7fa.tar.gz
prosody-7f04c5117e674ad8ca5bd4621fa30937fa59d7fa.zip
loggingmanager: File log sinks react to reopen-log-files event
Diffstat (limited to 'core/loggingmanager.lua')
-rw-r--r--core/loggingmanager.lua19
1 files changed, 16 insertions, 3 deletions
diff --git a/core/loggingmanager.lua b/core/loggingmanager.lua
index 58108a23..aa8f368d 100644
--- a/core/loggingmanager.lua
+++ b/core/loggingmanager.lua
@@ -10,7 +10,7 @@ local os_date, os_getenv = os.date, os.getenv;
local getstyle, getstring = require "util.termcolours".getstyle, require "util.termcolours".getstring;
local config = require "core.configmanager";
-
+local eventmanager = require "core.eventmanager";
local logger = require "util.logger";
_G.log = logger.init("general");
@@ -190,12 +190,26 @@ do
end
end
+local empty_function = function () end;
function log_sink_types.file(config)
local log = config.filename;
local logfile = io_open(log, "a+");
if not logfile then
- return function () end
+ return empty_function;
end
+ local write, flush = logfile.write, logfile.flush;
+
+ eventmanager.add_event_hook("reopen-log-files", function ()
+ if logfile then
+ logfile:close();
+ end
+ logfile = io_open(log, "a+");
+ if not logfile then
+ write, flush = empty_function, empty_function;
+ else
+ write, flush = logfile.write, logfile.flush;
+ end
+ end);
local timestamps = config.timestamps;
@@ -203,7 +217,6 @@ function log_sink_types.file(config)
timestamps = default_timestamp; -- Default format
end
- local write, format, flush = logfile.write, format, logfile.flush;
return function (name, level, message, ...)
if timestamps then
write(logfile, os_date(timestamps), " ");