diff options
author | Waqas Hussain <waqas20@gmail.com> | 2010-12-03 01:03:52 +0500 |
---|---|---|
committer | Waqas Hussain <waqas20@gmail.com> | 2010-12-03 01:03:52 +0500 |
commit | f79be6e7200bf197bb786b787abf1c09b6932681 (patch) | |
tree | b9b6920601a53dd271e76608f765442a9a8e9970 /util | |
parent | 9ed0c32abd3adedb068c5474327400a222453534 (diff) | |
download | prosody-f79be6e7200bf197bb786b787abf1c09b6932681.tar.gz prosody-f79be6e7200bf197bb786b787abf1c09b6932681.zip |
util.xmppstream: Fix logger name.
Diffstat (limited to 'util')
-rw-r--r-- | util/xmppstream.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/util/xmppstream.lua b/util/xmppstream.lua index 29095e41..90580ff2 100644 --- a/util/xmppstream.lua +++ b/util/xmppstream.lua @@ -14,7 +14,7 @@ local tostring = tostring; local t_insert = table.insert; local t_concat = table.concat; -local default_log = require "util.logger".init("xmlhandlers"); +local default_log = require "util.logger".init("xmppstream"); local error = error; |