Core/Misc: Better description for a log

This commit is contained in:
Aokromes
2016-07-02 19:53:38 +02:00
committed by GitHub
parent f1923a2e3a
commit 90cff479ac

View File

@@ -28,7 +28,7 @@ DatabaseWorkerPool<T>::DatabaseWorkerPool()
{
WPFatal(mysql_thread_safe(), "Used MySQL library isn't thread-safe.");
WPFatal(mysql_get_client_version() >= MIN_MYSQL_CLIENT_VERSION, "TrinityCore does not support MySQL versions below 5.1");
WPFatal(mysql_get_client_version() == MYSQL_VERSION_ID, "Used MySQL library version (%s) does not match the version used to compile TrinityCore (%s).",
WPFatal(mysql_get_client_version() == MYSQL_VERSION_ID, "Used MySQL library version (%s) does not match the version used to compile TrinityCore (%s). Search on forum for TCE00011.",
mysql_get_client_info(), MYSQL_SERVER_VERSION);
}