New: Log which DB is being migrated

Closes #4669
pull/4677/head
Mark McDowall 3 years ago
parent ad9f242b5c
commit 07c95f06d3

@ -54,15 +54,18 @@ namespace NzbDrone.Core.Datastore.Migration.Framework
switch (Context.MigrationType)
{
case MigrationType.Main:
_logger.Info("Starting migration to " + Version);
LogMigrationMessage(MigrationType.Main);
MainDbUpgrade();
return;
case MigrationType.Log:
_logger.Info("Starting migration to " + Version);
LogMigrationMessage(MigrationType.Log);
LogDbUpgrade();
return;
default:
LogMigrationMessage(MigrationType.Log);
LogDbUpgrade();
LogMigrationMessage(MigrationType.Main);
MainDbUpgrade();
return;
}
@ -72,5 +75,10 @@ namespace NzbDrone.Core.Datastore.Migration.Framework
{
throw new NotImplementedException();
}
private void LogMigrationMessage(MigrationType type)
{
_logger.Info("Starting migration of {0} DB to {1}", type.ToString(), Version);
}
}
}

Loading…
Cancel
Save