1
0
mirror of https://github.com/anope/anope.git synced 2026-07-06 12:53:14 +02:00

Rename several modules to remove the m_ prefix.

This commit is contained in:
Sadie Powell
2024-01-24 12:01:50 +00:00
parent 72acef4e15
commit 7ac1fe5847
43 changed files with 142 additions and 142 deletions
+2 -2
View File
@@ -24,9 +24,9 @@ public:
void OnError(const SQL::Result &r) override
{
if (!r.GetQuery().query.empty())
Log(LOG_DEBUG) << "m_irc2sql: Error executing query " << r.finished_query << ": " << r.GetError();
Log(LOG_DEBUG) << "irc2sql: Error executing query " << r.finished_query << ": " << r.GetError();
else
Log(LOG_DEBUG) << "m_irc2sql: Error executing query: " << r.GetError();
Log(LOG_DEBUG) << "irc2sql: Error executing query: " << r.GetError();
}
};