diff options
Diffstat (limited to 'src/users.cpp')
-rw-r--r-- | src/users.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/users.cpp b/src/users.cpp index 2fb73c48b..3b9f5a16a 100644 --- a/src/users.cpp +++ b/src/users.cpp @@ -700,6 +700,7 @@ void User::UnOper() void User::QuitUser(InspIRCd* Instance, User *user, const std::string &quitreason, const char* operreason) { + Instance->Log(DEBUG,"QuitUser: %s", user->nick); user->Write("ERROR :Closing link (%s@%s) [%s]", user->ident, user->host, operreason); user->muted = true; Instance->GlobalCulls.AddItem(user, quitreason.c_str(), operreason); @@ -735,6 +736,8 @@ void User::AddClient(InspIRCd* Instance, int socket, int port, bool iscached, in return; } + Instance->Log(DEBUG,"New user fd: %d", socket); + int j = 0; Instance->unregistered_count++; @@ -835,6 +838,7 @@ void User::AddClient(InspIRCd* Instance, int socket, int port, bool iscached, in { if (!Instance->SE->AddFd(New)) { + Instance->Log(DEBUG,"Internal error on new connection"); User::QuitUser(Instance, New, "Internal error handling connection"); } } |