Improved info debug message about database version

This commit is contained in:
emeric
2020-01-19 18:20:18 +01:00
parent 60701fe182
commit 9e78c6b4d9
+1 -1
View File
@@ -86,7 +86,7 @@ Session::doDatabaseMigrationIfNeeded()
try
{
version = VersionInfo::getOrCreate(*this)->getVersion();
LMS_LOG(DB, INFO) << "Database version = " << version;
LMS_LOG(DB, INFO) << "Database version = " << version << ", LMS binary version = " << LMS_DATABASE_VERSION;
if (version == LMS_DATABASE_VERSION)
return;
}