diff options
author | Matthew Wild <mwild1@gmail.com> | 2010-12-21 01:30:27 +0000 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2010-12-21 01:30:27 +0000 |
commit | da58c792b4a86642220ab4234fe98b92783d9582 (patch) | |
tree | 4e7673647d30b0963394fe151ba58a4a4a2f558e /prosody.cfg.lua.dist | |
parent | 39a38217d871cc9c054909fddb88d9f45d874e0b (diff) | |
download | prosody-da58c792b4a86642220ab4234fe98b92783d9582.tar.gz prosody-da58c792b4a86642220ab4234fe98b92783d9582.zip |
prosody.cfg.lua.dist: Update for new logging config format
Diffstat (limited to 'prosody.cfg.lua.dist')
-rw-r--r-- | prosody.cfg.lua.dist | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/prosody.cfg.lua.dist b/prosody.cfg.lua.dist index e4afce5b..5cfea17f 100644 --- a/prosody.cfg.lua.dist +++ b/prosody.cfg.lua.dist @@ -94,8 +94,11 @@ ssl = { -- Logging configuration -- For advanced logging see http://prosody.im/doc/logging -log = "prosody.log"; -debug = false; -- Log debug messages? +log = { + info = "prosody.log"; -- Change info to debug for verbose logging + error = "prosody.err"; + -- "*syslog"; -- Uncomment this for logging to syslog +} ----------- Virtual hosts ----------- -- You need to add a VirtualHost entry for each domain you wish Prosody to serve. |