Add some log messages, that migrations are in progress

master
Nicolas Werner 4 years ago
parent 9f79b85579
commit 3df4bde032
  1. 2
      src/Cache.cpp

@ -787,6 +787,7 @@ Cache::runMigrations()
}},
};
nhlog::db()->info("Running migrations, this may take a while!");
for (const auto &[target_version, migration] : migrations) {
if (target_version > stored_version)
if (!migration()) {
@ -794,6 +795,7 @@ Cache::runMigrations()
return false;
}
}
nhlog::db()->info("Migrations finished.");
setCurrentFormat();
return true;

Loading…
Cancel
Save