aboutsummaryrefslogtreecommitdiff
path: root/BackEnd/Timeline/Services/Migration/CustomMigrationManager.cs
diff options
context:
space:
mode:
Diffstat (limited to 'BackEnd/Timeline/Services/Migration/CustomMigrationManager.cs')
-rw-r--r--BackEnd/Timeline/Services/Migration/CustomMigrationManager.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/BackEnd/Timeline/Services/Migration/CustomMigrationManager.cs b/BackEnd/Timeline/Services/Migration/CustomMigrationManager.cs
index ba86e10b..f6f156cc 100644
--- a/BackEnd/Timeline/Services/Migration/CustomMigrationManager.cs
+++ b/BackEnd/Timeline/Services/Migration/CustomMigrationManager.cs
@@ -36,7 +36,7 @@ namespace Timeline.Services.Migration
if (!did)
{
- _logger.LogInformation("Begin custom migration '{0}'.", name);
+ _logger.LogWarning("Begin custom migration '{0}'.", name);
await using var transaction = await _database.Database.BeginTransactionAsync();
@@ -47,7 +47,7 @@ namespace Timeline.Services.Migration
await transaction.CommitAsync();
- _logger.LogInformation("End custom migration '{0}'.", name);
+ _logger.LogWarning("End custom migration '{0}'.", name);
}
}
}