diff options
Diffstat (limited to 'include/protocol.h')
-rw-r--r-- | include/protocol.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/protocol.h b/include/protocol.h index 4dc115fe6..89d337594 100644 --- a/include/protocol.h +++ b/include/protocol.h @@ -112,7 +112,8 @@ public: if (!sender) { - Log(LOG_DEBUG) << "No message sender for type " << T::NAME; + const char *const name = T::NAME; + Anope::Logger.Debug("No message sender for type {0}", name); return; } |