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 | 7052bb3a5b03fe1a92eef1418ab1a956cd3ad5d1 (patch) | |
tree | 2e8e041f2c3afa81ec615f5d1a4a9070c982e0c3 /prosody.cfg.lua.dist | |
parent | fbdb1c359a8a244c27bd40a3067f6314dcdcfb49 (diff) | |
download | prosody-7052bb3a5b03fe1a92eef1418ab1a956cd3ad5d1.tar.gz prosody-7052bb3a5b03fe1a92eef1418ab1a956cd3ad5d1.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. |