From a36c69c25c86e21ec293b6af81ff4e2e1fb108ec Mon Sep 17 00:00:00 2001 From: Dominion Date: Sun, 23 Apr 2023 10:31:03 -0400 Subject: [PATCH] Logging placeholder cleanup --- .../Controllers/InstanceRequiredController.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Tgstation.Server.Host/Controllers/InstanceRequiredController.cs b/src/Tgstation.Server.Host/Controllers/InstanceRequiredController.cs index 0c10d676df..1beedab36f 100644 --- a/src/Tgstation.Server.Host/Controllers/InstanceRequiredController.cs +++ b/src/Tgstation.Server.Host/Controllers/InstanceRequiredController.cs @@ -49,7 +49,7 @@ namespace Tgstation.Server.Host.Controllers const string OnlineWord = "online"; logger.LogWarning( - "Instance {0} is says it's {1} in the database, but it is actually {2} in the service. Updating the database to reflect this...", + "Instance {instanceId} is says it's {databaseState} in the database, but it is actually {serviceState} in the service. Updating the database to reflect this...", metadata.Id, online ? OfflineWord : OnlineWord, online ? OnlineWord : OfflineWord);