summaryrefslogtreecommitdiffstats
path: root/net
diff options
context:
space:
mode:
authorcbentzel@chromium.org <cbentzel@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-09-08 14:03:51 +0000
committercbentzel@chromium.org <cbentzel@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-09-08 14:03:51 +0000
commit2229e8264e786f5265bf5c0a6265d5aa3dfaf713 (patch)
tree71c66da7c88c70ac3ffef92d386093c0191872f5 /net
parent62955b7917ba76263168daa474aa91f88095b2b9 (diff)
downloadchromium_src-2229e8264e786f5265bf5c0a6265d5aa3dfaf713.zip
chromium_src-2229e8264e786f5265bf5c0a6265d5aa3dfaf713.tar.gz
chromium_src-2229e8264e786f5265bf5c0a6265d5aa3dfaf713.tar.bz2
Demote LOG(WARNING) about unable to handle an auth scheme to LOG(INFO).
This shows up in the field a number of times due to the Kerberos HTTP authentication protocol not being supported by Chrome, and leads people to believe it's a bigger problem than it actually is. BUG=None TEST=None Review URL: http://codereview.chromium.org/3369004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@58822 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'net')
-rw-r--r--net/http/http_auth.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/net/http/http_auth.cc b/net/http/http_auth.cc
index e6fdfe8..bb8c805 100644
--- a/net/http/http_auth.cc
+++ b/net/http/http_auth.cc
@@ -54,8 +54,8 @@ void HttpAuth::ChooseBestChallenge(
int rv = http_auth_handler_factory->CreateAuthHandlerFromString(
cur_challenge, target, origin, net_log, &cur);
if (rv != OK) {
- LOG(WARNING) << "Unable to create AuthHandler. Status: "
- << ErrorToString(rv) << " Challenge: " << cur_challenge;
+ LOG(INFO) << "Unable to create AuthHandler. Status: "
+ << ErrorToString(rv) << " Challenge: " << cur_challenge;
continue;
}
if (cur.get() && (!best.get() || best->score() < cur->score()) &&