From cb8578859bd19d7d939ff6e60b2e975bce9f9836 Mon Sep 17 00:00:00 2001 From: Loporrit <141286461+loporrit@users.noreply.github.com> Date: Fri, 1 Sep 2023 19:13:16 +0000 Subject: [PATCH] Disable Sending System Info log spam --- .../MareSynchronosServer/Services/SystemInfoService.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MareSynchronosServer/MareSynchronosServer/Services/SystemInfoService.cs b/MareSynchronosServer/MareSynchronosServer/Services/SystemInfoService.cs index 2df0c32..5b8d5a6 100644 --- a/MareSynchronosServer/MareSynchronosServer/Services/SystemInfoService.cs +++ b/MareSynchronosServer/MareSynchronosServer/Services/SystemInfoService.cs @@ -61,7 +61,7 @@ public class SystemInfoService : IHostedService, IDisposable if (_config.IsMain) { - _logger.LogInformation("Sending System Info, Online Users: {onlineUsers}", onlineUsers); + _logger.LogTrace("Sending System Info, Online Users: {onlineUsers}", onlineUsers); _hubContext.Clients.All.Client_UpdateSystemInfo(SystemInfoDto);