diff options
author | peavey <peavey@e03df62e-2008-0410-955e-edbf42e46eb7> | 2008-05-09 20:31:14 +0000 |
---|---|---|
committer | peavey <peavey@e03df62e-2008-0410-955e-edbf42e46eb7> | 2008-05-09 20:31:14 +0000 |
commit | 9a6a031fc30617a0932af27b21bdc613625cbf0e (patch) | |
tree | d11e7e850abd75ac5cf5e669df79651538071b16 /src | |
parent | 3a5025f4f508b0f1306048e89f42830a6323510d (diff) |
nuke some debug (snatch)
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@9685 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src')
-rw-r--r-- | src/users.cpp | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/src/users.cpp b/src/users.cpp index ab4270845..b81cd6d91 100644 --- a/src/users.cpp +++ b/src/users.cpp @@ -533,14 +533,11 @@ bool User::AddBuffer(const std::string &a) } else { - ServerInstance->Logs->Log("recvqdebug", DEBUG, "Current recvq size is %d and I got called with a string of %d\n(%s)", recvq.length(), a.length(), a.c_str()); - // While we can find the end of a chunk to add while (i != std::string::npos) { // Append the chunk that we have recvq.append(a, start, (i - start)); - ServerInstance->Logs->Log("recvqdebug", DEBUG, "Appended a chunk, length is now %d", recvq.length()); // Start looking for the next one start = i + 1; @@ -560,11 +557,8 @@ bool User::AddBuffer(const std::string &a) * which is most *certainly* not the behaviour we want! * -- w00t */ - ServerInstance->Logs->Log("recvqdebug", DEBUG, "*** ALERT *** start != a.length, we should probably add more"); recvq.append(a, start, (a.length() - start)); } - - ServerInstance->Logs->Log("recvqdebug", DEBUG, "Final recvq length is %d\n(%s)", recvq.length(), recvq.c_str()); } if (this->MyClass && (recvq.length() > this->MyClass->GetRecvqMax())) |