We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9dde3ec commit 05643dfCopy full SHA for 05643df
websocket-sharp/WebSocket.cs
@@ -2245,15 +2245,15 @@ private HttpResponse sendProxyConnectRequest ()
2245
var val = res.Headers["Proxy-Authenticate"];
2246
2247
if (val.IsNullOrEmpty ()) {
2248
- _log.Error ("No proxy authentication challenge is specified.");
+ _log.Debug ("No proxy authentication challenge is specified.");
2249
2250
return res;
2251
}
2252
2253
var achal = AuthenticationChallenge.Parse (val);
2254
2255
if (achal == null) {
2256
- _log.Error ("An invalid proxy authentication challenge is specified.");
+ _log.Debug ("An invalid proxy authentication challenge is specified.");
2257
2258
2259
0 commit comments