diff options
Diffstat (limited to 'modules/extra/mysql.cpp')
-rw-r--r-- | modules/extra/mysql.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/modules/extra/mysql.cpp b/modules/extra/mysql.cpp index 027291991..65fe6d5c4 100644 --- a/modules/extra/mysql.cpp +++ b/modules/extra/mysql.cpp @@ -242,9 +242,10 @@ public: { me = this; - DThread = new DispatcherThread(); DThread->Start(); + + Log() << "Module was compiled against MySQL version " << (MYSQL_VERSION_ID / 10000) << "." << (MYSQL_VERSION_ID / 100 % 100) << "." << (MYSQL_VERSION_ID % 100) << " and is running against version " << mysql_get_client_info(); } ~ModuleSQL() |