Revert bad merge

This commit is contained in:
Jordan Dominion
2023-07-10 09:33:12 -04:00
parent 3ae1117b57
commit 0bcb9859da
2 changed files with 2 additions and 2 deletions
@@ -556,7 +556,7 @@ namespace Tgstation.Server.Host.Database
var dbServiceProvider = ((IInfrastructure<IServiceProvider>)Database).Instance;
var migrator = dbServiceProvider.GetRequiredService<IMigrator>();
logger.LogInformation("Migrating down to version {0}. Target: {1}", targetVersion, targetMigration);
logger.LogInformation("Migrating down to version {targetVersion}. Target: {targetMigration}", targetVersion, targetMigration);
try
{
await migrator.MigrateAsync(targetMigration, cancellationToken);
@@ -257,7 +257,7 @@ namespace Tgstation.Server.Host.Database
if (rowsUpdated > 0)
logger.LogInformation(
"Updated {0} instances to use database backed BYOND topic timeouts from configuration setting of {1}",
"Updated {count} instances to use database backed BYOND topic timeouts from configuration setting of {timeout}",
rowsUpdated,
generalConfiguration.ByondTopicTimeout);
}