From 2195f4cbc7e076744f2c3d36ad285a39f1de451e Mon Sep 17 00:00:00 2001 From: Dominion Date: Sat, 22 Apr 2023 19:14:51 -0400 Subject: [PATCH] Fix logging call --- tests/Tgstation.Server.Host.Tests/Swarm/TestableSwarmNode.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/Tgstation.Server.Host.Tests/Swarm/TestableSwarmNode.cs b/tests/Tgstation.Server.Host.Tests/Swarm/TestableSwarmNode.cs index 30bb68087b..541cd46879 100644 --- a/tests/Tgstation.Server.Host.Tests/Swarm/TestableSwarmNode.cs +++ b/tests/Tgstation.Server.Host.Tests/Swarm/TestableSwarmNode.cs @@ -241,7 +241,7 @@ namespace Tgstation.Server.Host.Swarm.Tests async Task ExecuteUpdate(Version version, CancellationToken cancellationToken, CancellationToken criticalCancellationToken) { - logger.LogTrace("BeginUpdate..."); + logger.LogTrace("ExecuteUpdate..."); await Task.Yield(); // Important to simulate some actual kind of asyncronicity here await Service.PrepareUpdate(version, cancellationToken);