diff --git a/Content.Server/Administration/Logs/AdminLogSystem.cs b/Content.Server/Administration/Logs/AdminLogSystem.cs index 8c25249e0d..956e7db49c 100644 --- a/Content.Server/Administration/Logs/AdminLogSystem.cs +++ b/Content.Server/Administration/Logs/AdminLogSystem.cs @@ -119,9 +119,9 @@ public partial class AdminLogSystem : SharedAdminLogSystem _accumulatedFrameTime = 0; // ship the logs to Azkaban - var task = Task.Run(() => + var task = Task.Run(async () => { - _db.AddAdminLogs(copy); + await _db.AddAdminLogs(copy); }); if (_metricsEnabled)