diff options
| author | Cody Robibero <cody@robibe.ro> | 2026-08-04 17:58:09 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-08-04 17:58:09 -0400 |
| commit | 990ab183534294f2d31e61d6024fb2585ad50c9c (patch) | |
| tree | 26153f2c198728a8c4792c67290120b374510d59 /Emby.Server.Implementations | |
| parent | 7fbc1ff8c0192b608a493324f2b7eafcf0a4383e (diff) | |
| parent | 40601523e7c76a4bb418beb83488746768bcfc2f (diff) | |
Merge pull request #17528 from Shadowghost/websocket-logs-debug
Degrade ForceKeepAlive logs to debug
Diffstat (limited to 'Emby.Server.Implementations')
| -rw-r--r-- | Emby.Server.Implementations/Session/SessionWebSocketListener.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Emby.Server.Implementations/Session/SessionWebSocketListener.cs b/Emby.Server.Implementations/Session/SessionWebSocketListener.cs index 2582ed9df0..e81edc82c6 100644 --- a/Emby.Server.Implementations/Session/SessionWebSocketListener.cs +++ b/Emby.Server.Implementations/Session/SessionWebSocketListener.cs @@ -223,7 +223,7 @@ namespace Emby.Server.Implementations.Session if (inactive.Count > 0) { - _logger.LogInformation("Sending ForceKeepAlive message to {0} inactive WebSockets.", inactive.Count); + _logger.LogDebug("Sending ForceKeepAlive message to {0} inactive WebSockets.", inactive.Count); } foreach (var webSocket in inactive) |
