diff options
author | Kim Alvefur <zash@zash.se> | 2013-01-24 21:48:45 +0100 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2013-01-24 21:48:45 +0100 |
commit | f766f157e715eb12d4c5a460127681c80331feb9 (patch) | |
tree | 08470da9891a9938ba9de957af41eec268bbe8b2 /tools/ejabberd2prosody.lua | |
parent | 6132cbab483a3521b4efddf87862ddc68f7f9784 (diff) | |
download | prosody-f766f157e715eb12d4c5a460127681c80331feb9.tar.gz prosody-f766f157e715eb12d4c5a460127681c80331feb9.zip |
ejabberd2prosody.lua: Replace util.logger with a dummy before requiring util.serialization
Diffstat (limited to 'tools/ejabberd2prosody.lua')
-rwxr-xr-x | tools/ejabberd2prosody.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/ejabberd2prosody.lua b/tools/ejabberd2prosody.lua index 656f0824..ee9e7821 100755 --- a/tools/ejabberd2prosody.lua +++ b/tools/ejabberd2prosody.lua @@ -19,9 +19,9 @@ local erlparse = require "erlparse"; prosody = {}; +package.loaded["util.logger"] = {init = function() return function() end; end} local serialize = require "util.serialization".serialize; local st = require "util.stanza"; -package.loaded["util.logger"] = {init = function() return function() end; end} local dm = require "util.datamanager" dm.set_data_path("data"); |