diff options
| author | 2023-06-12 01:38:45 +0100 | |
|---|---|---|
| committer | 2023-06-12 01:39:47 +0100 | |
| commit | a01934681f9306909bc7736daee713785f9ddbe9 (patch) | |
| tree | db267eb51984bbe1d35be07093e652cfd5fbe7a8 /src/users.cpp | |
| parent | Log when encountering an erroneous user cull without a quit. (diff) | |
| download | inspircd++-a01934681f9306909bc7736daee713785f9ddbe9.tar.gz inspircd++-a01934681f9306909bc7736daee713785f9ddbe9.tar.bz2 inspircd++-a01934681f9306909bc7736daee713785f9ddbe9.zip | |
Make internal bug messages more consistent.
Diffstat (limited to 'src/users.cpp')
| -rw-r--r-- | src/users.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/users.cpp b/src/users.cpp index 220060275..3470c7ea8 100644 --- a/src/users.cpp +++ b/src/users.cpp @@ -517,7 +517,7 @@ bool User::ChangeNick(const std::string& newnick, time_t newts) { if (quitting) { - ServerInstance->Logs.Debug("USERS", "ERROR: Attempted to change nick of a quitting user: " + this->nick); + ServerInstance->Logs.Debug("USERS", "BUG: Attempted to change nick of a quitting user: " + this->nick); return false; } |
