1
0
mirror of https://github.com/anope/anope.git synced 2026-06-26 05:56:39 +02:00

Merge branch '2.0' into 2.1.

This commit is contained in:
Sadie Powell
2023-10-11 15:35:24 +01:00
5 changed files with 15 additions and 10 deletions
+2 -2
View File
@@ -76,7 +76,7 @@ class DBSQL : public Module, public Pipe
if (last_warn + 300 < Anope::CurTime)
{
last_warn = Anope::CurTime;
Log(this) << "db_sql: Unable to execute query, is SQL configured correctly?";
Log(this) << "db_sql: Unable to execute query, is SQL (" << this->sql.GetServiceName() << ") configured correctly?";
}
}
else if (!Anope::Quitting)
@@ -172,7 +172,7 @@ class DBSQL : public Module, public Pipe
{
if (!this->sql)
{
Log(this) << "Unable to load databases, is SQL configured correctly?";
Log(this) << "Unable to load databases, is SQL (" << this->sql.GetServiceName() << ") configured correctly?";
return EVENT_CONTINUE;
}