Skip to content

Commit

Permalink
[database] Promote MySQL server version message to LOGNOTICE
Browse files Browse the repository at this point in the history
  • Loading branch information
pkerling committed Jan 17, 2019
1 parent 12c140c commit a0b269e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion xbmc/dbwrappers/mysqldataset.cpp
Expand Up @@ -177,7 +177,7 @@ int MysqlDatabase::connect(bool create_new) {
if (!showed_ver_info)
{
std::string version_string = mysql_get_server_info(conn);
CLog::Log(LOGINFO, "MYSQL: Connected to version {}", version_string);
CLog::Log(LOGNOTICE, "MYSQL: Connected to version {}", version_string);
showed_ver_info = true;
unsigned long version = mysql_get_server_version(conn);
// Minimum for MySQL: 5.6 (5.5 is EOL)
Expand Down

0 comments on commit a0b269e

Please sign in to comment.