Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2470)

Unified Diff: chrome/browser/sync/notifier/communicator/single_login_attempt.cc

Issue 225001: Use base/logging from chrome/browser/sync. Add a macro to libjingle's (Closed)
Patch Set: Added README.chromium Created 11 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/sync/notifier/communicator/single_login_attempt.cc
diff --git a/chrome/browser/sync/notifier/communicator/single_login_attempt.cc b/chrome/browser/sync/notifier/communicator/single_login_attempt.cc
index fe25e8cd912cd62a1c637bc51c6a3015303e39be..104b8b189af78664c8c15791167a8d00de27d72e 100644
--- a/chrome/browser/sync/notifier/communicator/single_login_attempt.cc
+++ b/chrome/browser/sync/notifier/communicator/single_login_attempt.cc
@@ -6,6 +6,7 @@
#include "chrome/browser/sync/notifier/communicator/single_login_attempt.h"
+#include "base/logging.h"
#include "chrome/browser/sync/notifier/communicator/connection_options.h"
#include "chrome/browser/sync/notifier/communicator/connection_settings.h"
#include "chrome/browser/sync/notifier/communicator/const_communicator.h"
@@ -463,7 +464,7 @@ void SingleLoginAttempt::OnClientStateChangeClosed(
void SingleLoginAttempt::HandleConnectionPasswordError(
const buzz::CaptchaChallenge& captcha_challenge) {
- LOG(LS_VERBOSE) << "SingleLoginAttempt::HandleConnectionPasswordError";
+ LOG(INFO) << "SingleLoginAttempt::HandleConnectionPasswordError";
// Clear the auth cookie.
std::string current_auth_cookie =
@@ -486,7 +487,7 @@ void SingleLoginAttempt::HandleConnectionError(
int subcode,
const buzz::XmlElement* stream_error,
const buzz::CaptchaChallenge& captcha_challenge) {
- LOG_F(LS_VERBOSE) << "(" << code << ", " << subcode << ")";
+ LOG(INFO) << "(" << code << ", " << subcode << ")";
// Save off the error code information, so we can use it to tell the user
// what went wrong if all else fails.

Powered by Google App Engine
This is Rietveld 408576698