summaryrefslogtreecommitdiff
path: root/src/modules
diff options
context:
space:
mode:
authorbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2005-11-29 19:55:22 +0000
committerbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2005-11-29 19:55:22 +0000
commit27f2913bf609915f0f99f3a9fd63f78cc4745804 (patch)
treeaa288527330287d51d05f6d6348799294a9abbdd /src/modules
parent8c5e6085b6341ccbe69b80a6d16dca192ec80f8b (diff)
Removed some useless debug info
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@2020 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/modules')
-rw-r--r--src/modules/m_spanningtree.cpp5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/modules/m_spanningtree.cpp b/src/modules/m_spanningtree.cpp
index fa4ff3d6e..157c944ef 100644
--- a/src/modules/m_spanningtree.cpp
+++ b/src/modules/m_spanningtree.cpp
@@ -434,7 +434,6 @@ class TreeSocket : public InspSocket
bool ForceMode(std::string source, std::deque<std::string> params)
{
- log(DEBUG,"*** FORCEMODE");
userrec* who = new userrec;
who->fd = FD_MAGIC_NUMBER;
if (params.size() < 2)
@@ -446,7 +445,6 @@ class TreeSocket : public InspSocket
}
Srv->SendMode(modelist,params.size(),who);
DoOneToAllButSender(source,"FMODE",params,source);
- log(DEBUG,"***** Duplicated");
delete who;
return true;
}
@@ -796,7 +794,6 @@ class TreeSocket : public InspSocket
}
item++;
n.push_back(param);
- log(DEBUG,"Line: '%s' added param; '%s'",line.c_str(),param.c_str());
}
}
return n;
@@ -1023,11 +1020,9 @@ bool DoOneToAllButSender(std::string prefix, std::string command, std::deque<std
log(DEBUG,"ALLBUTONE: Comes from %s SHOULD NOT go back to %s",prefix.c_str(),omit.c_str());
// TODO: Special stuff with privmsg and notice
std::string FullLine = ":" + prefix + " " + command;
- log(DEBUG,"*** ALLBUTONE: %d entries!",params.size());
for (unsigned int x = 0; x < params.size(); x++)
{
FullLine = FullLine + " " + params[x];
- Srv->Log(DEBUG,"Append "+params[x]+" to line, now: "+FullLine);
}
for (unsigned int x = 0; x < TreeRoot->ChildCount(); x++)
{