Software /
code /
prosody
Diff
prosody @ 882:e362bafbbb68
prosody: Load logger after reading the config
author | Matthew Wild <mwild1@gmail.com> |
---|---|
date | Sat, 07 Mar 2009 19:28:12 +0000 |
parent | 853:c0a40522041e |
child | 896:2c0b9e3c11c3 |
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"