diff --git a/common/dbcore.cpp b/common/dbcore.cpp index 410362dfa..ab7cd945a 100644 --- a/common/dbcore.cpp +++ b/common/dbcore.cpp @@ -138,7 +138,7 @@ MySQLRequestResult DBcore::QueryDatabase(const char *query, uint32 querylen, boo * Error logging */ if (mysql_errno(mysql) > 0 && query[0] != '\0') { - LogMySQLError("[{}] [{}]\n[{}]", mysql_errno(mysql), mysql_error(mysql), query); + LogMySQLError("MySQL Error ({}) [{}] Query [{}]", mysql_errno(mysql), mysql_error(mysql), query); } return MySQLRequestResult(nullptr, 0, 0, 0, 0, mysql_errno(mysql), errorBuffer);