loggingmanager: Remove event hook that never fired anyway, and held logfiles open - leave the GC to close them now.

This commit is contained in:
Matthew Wild 2011-01-11 22:40:09 +00:00
parent fe53d96e7d
commit ddde44eb04

View file

@ -266,12 +266,6 @@ function log_sink_types.file(config)
end
local write, flush = logfile.write, logfile.flush;
prosody.events.add_handler("logging-reloading", function ()
if logfile then
logfile:close();
end
end);
local timestamps = config.timestamps;
if timestamps == nil or timestamps == true then