diff --git a/ArchiSteamFarm/WebBrowser.cs b/ArchiSteamFarm/WebBrowser.cs index 3f0119ffc..20c7b29b9 100644 --- a/ArchiSteamFarm/WebBrowser.cs +++ b/ArchiSteamFarm/WebBrowser.cs @@ -413,7 +413,12 @@ namespace ArchiSteamFarm { try { responseMessage = await HttpClient.SendAsync(requestMessage).ConfigureAwait(false); - } catch { // Request failed, we don't need to know the exact reason, swallow exception + } catch (Exception e) { + // This exception is really common, don't bother with it unless debug mode is enabled + if (Debugging.IsDebugBuild || Program.GlobalConfig.Debug) { + Logging.LogGenericException(e, Identifier); + } + return null; } }