From a01934681f9306909bc7736daee713785f9ddbe9 Mon Sep 17 00:00:00 2001 From: Sadie Powell Date: Mon, 12 Jun 2023 01:38:45 +0100 Subject: Make internal bug messages more consistent. --- src/usermanager.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/usermanager.cpp') diff --git a/src/usermanager.cpp b/src/usermanager.cpp index bbb93f113..db8fe0b5c 100644 --- a/src/usermanager.cpp +++ b/src/usermanager.cpp @@ -251,13 +251,13 @@ void UserManager::QuitUser(User* user, const std::string& quitmessage, const std { if (user->quitting) { - ServerInstance->Logs.Debug("USERS", "ERROR: Tried to quit quitting user: " + user->nick); + ServerInstance->Logs.Debug("USERS", "BUG: Tried to quit quitting user: " + user->nick); return; } if (IS_SERVER(user)) { - ServerInstance->Logs.Debug("USERS", "ERROR: Tried to quit server user: " + user->nick); + ServerInstance->Logs.Debug("USERS", "BUG: Tried to quit server user: " + user->nick); return; } @@ -318,7 +318,7 @@ void UserManager::QuitUser(User* user, const std::string& quitmessage, const std } if (!clientlist.erase(user->nick)) - ServerInstance->Logs.Debug("USERS", "ERROR: Nick not found in clientlist, cannot remove: " + user->nick); + ServerInstance->Logs.Debug("USERS", "BUG: Nick not found in clientlist, cannot remove: " + user->nick); uuidlist.erase(user->uuid); user->PurgeEmptyChannels(); -- cgit v1.3.1-10-gc9f91