diff options
author | Waqas Hussain <waqas20@gmail.com> | 2009-09-14 02:11:17 +0500 |
---|---|---|
committer | Waqas Hussain <waqas20@gmail.com> | 2009-09-14 02:11:17 +0500 |
commit | 45567765421d46ff2ec60874e63bb1375759318b (patch) | |
tree | e985f8f618ecca7228b93bd076f6edbc0e591bfb /plugins/muc/mod_muc.lua | |
parent | 77b771fe1573092c52fdacc35d235ca13734c295 (diff) | |
download | prosody-45567765421d46ff2ec60874e63bb1375759318b.tar.gz prosody-45567765421d46ff2ec60874e63bb1375759318b.zip |
MUC: Removed some debug logging.
Diffstat (limited to 'plugins/muc/mod_muc.lua')
-rw-r--r-- | plugins/muc/mod_muc.lua | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/plugins/muc/mod_muc.lua b/plugins/muc/mod_muc.lua index 1b6dd3c2..3e6fafb8 100644 --- a/plugins/muc/mod_muc.lua +++ b/plugins/muc/mod_muc.lua @@ -31,9 +31,7 @@ local function room_route_stanza(room, stanza) core_post_stanza(component, stanz local function room_save(room, forced) local node = jid_split(room.jid); persistent_rooms[room.jid] = room._data.persistent; - module:log("debug", "1, %s, %s", room.jid, tostring(room._data.persistent)); if room._data.persistent then - module:log("debug", "2"); local history = room._data.history; room._data.history = nil; local data = { @@ -44,10 +42,8 @@ local function room_save(room, forced) datamanager.store(node, muc_host, "config", data); room._data.history = history; elseif forced then - module:log("debug", "3"); datamanager.store(node, muc_host, "config", nil); end - module:log("debug", "4"); if forced then datamanager.store(nil, muc_host, "persistent", persistent_rooms); end end |