diff --git a/src/NzbDrone.Core/Datastore/Migration/Framework/NzbDroneMigrationBase.cs b/src/NzbDrone.Core/Datastore/Migration/Framework/NzbDroneMigrationBase.cs index 96cd14011..20971d097 100644 --- a/src/NzbDrone.Core/Datastore/Migration/Framework/NzbDroneMigrationBase.cs +++ b/src/NzbDrone.Core/Datastore/Migration/Framework/NzbDroneMigrationBase.cs @@ -41,15 +41,18 @@ public override void Up() switch (MigrationContext.Current.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; } @@ -59,5 +62,10 @@ public override void Down() { throw new NotImplementedException(); } + + private void LogMigrationMessage(MigrationType type) + { + _logger.Info("Starting migration of {0} DB to {1}", type.ToString(), Version); + } } }