diff options
author | Adam <Adam@anope.org> | 2017-01-23 12:35:14 -0500 |
---|---|---|
committer | Adam <Adam@anope.org> | 2017-01-23 12:35:14 -0500 |
commit | 16ca76c2e7ab287e480185fbb03a0bb438351eda (patch) | |
tree | dfb25534afa2352b65b2ee707086cb5eecc96fbb /modules/nickserv/main/account.cpp | |
parent | ff030c1eb7c3764f9add2a689479e84d616cabcb (diff) |
Make log system use newer format strings
Also allow log messages to be translatable
Diffstat (limited to 'modules/nickserv/main/account.cpp')
-rw-r--r-- | modules/nickserv/main/account.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/nickserv/main/account.cpp b/modules/nickserv/main/account.cpp index a6fa19adf..86c96b14f 100644 --- a/modules/nickserv/main/account.cpp +++ b/modules/nickserv/main/account.cpp @@ -283,7 +283,7 @@ void AccountImpl::SetDisplay(NickServ::Nick *na) NickServ::Account* &nc = map[this->GetDisplay()]; if (nc) - Log(LOG_DEBUG) << "Duplicate account " << this->GetDisplay() << " in nickcore table?"; + Anope::Logger.Debug("Duplicate account {0} in nickcore table?", this->GetDisplay()); nc = this; } |