Software /
code /
prosody
Changeset
882:e362bafbbb68
prosody: Load logger after reading the config
author | Matthew Wild <mwild1@gmail.com> |
---|---|
date | Sat, 07 Mar 2009 19:28:12 +0000 |
parents | 881:c508fb40552a |
children | 883:0112ae30f399 |
files | prosody |
diffstat | 1 files changed, 5 insertions(+), 4 deletions(-) [+] |
line wrap: on
line diff
--- a/prosody Wed Mar 04 18:48:29 2009 +0000 +++ b/prosody Sat Mar 07 19:28:12 2009 +0000 @@ -32,10 +32,6 @@ config = require "core.configmanager" -log = require "util.logger".init("general"); - --- Disable log output, needs to read from config --- require "util.logger".setwriter(function () end); do -- TODO: Check for other formats when we add support for them @@ -63,6 +59,11 @@ end end +log = require "util.logger".init("general"); + +-- Disable log output, needs to read from config +-- require "util.logger".setwriter(function () end); + require "util.dependencies" local server = require "net.server"