Skip to content

Commit

Permalink
Merge pull request xbmc#1492 from vanosg/master
Browse files Browse the repository at this point in the history
Log database version to logfile
  • Loading branch information
Memphiz committed Oct 5, 2012
2 parents 1bd66f8 + 2b15f29 commit 8de9ffd
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions xbmc/dbwrappers/Database.cpp
Expand Up @@ -547,6 +547,8 @@ bool CDatabase::UpdateVersion(const CStdString &dbName)
CLog::Log(LOGERROR, "Can't open the database %s as it is a NEWER version than what we were expecting?", dbName.c_str());
return false;
}
else
CLog::Log(LOGNOTICE, "Running database version %s", dbName.c_str());
return true;
}

Expand Down

0 comments on commit 8de9ffd

Please sign in to comment.