From 6de8bb6b38b716605f0d275d998ca47e33520b7a Mon Sep 17 00:00:00 2001 From: vnugent Date: Tue, 1 Aug 2023 18:04:19 -0400 Subject: build configuration added --- lib/VNLib.Plugins.Extensions.VNCache/src/VnCacheClient.cs | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'lib/VNLib.Plugins.Extensions.VNCache/src') diff --git a/lib/VNLib.Plugins.Extensions.VNCache/src/VnCacheClient.cs b/lib/VNLib.Plugins.Extensions.VNCache/src/VnCacheClient.cs index d62c831..b10cef7 100644 --- a/lib/VNLib.Plugins.Extensions.VNCache/src/VnCacheClient.cs +++ b/lib/VNLib.Plugins.Extensions.VNCache/src/VnCacheClient.cs @@ -191,12 +191,13 @@ namespace VNLib.Plugins.Extensions.VNCache } catch (WebSocketException wse) { - pluginLog.Warn("Failed to connect to cache server {reason}", wse); + pluginLog.Warn("Failed to establish a websocket connection to cache server {reason}", wse.Message); continue; } + //SEs may be raised when the server is not available catch (HttpRequestException he) when (he.InnerException is SocketException) { - pluginLog.Debug("Failed to connect to random cache server server"); + pluginLog.Debug("Failed to connect to random cache server because a TCP connection could not be established"); //Continue next loop continue; } -- cgit