Index: chrome/browser/ssl/ssl_client_auth_observer.cc |
diff --git a/chrome/browser/ssl/ssl_client_auth_observer.cc b/chrome/browser/ssl/ssl_client_auth_observer.cc |
index 52e1aa6a933f6e73f08172eea8f36ae90e136665..edc63bbf78cd948984935b3bb2ea5672e531ba7c 100644 |
--- a/chrome/browser/ssl/ssl_client_auth_observer.cc |
+++ b/chrome/browser/ssl/ssl_client_auth_observer.cc |
@@ -55,7 +55,7 @@ void SSLClientAuthObserver::Observe( |
int type, |
const content::NotificationSource& source, |
const content::NotificationDetails& details) { |
- VLOG(1) << "SSLClientAuthObserver::Observe " << this; |
+ DVLOG(1) << "SSLClientAuthObserver::Observe " << this; |
DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI)); |
DCHECK(type == chrome::NOTIFICATION_SSL_CLIENT_AUTH_CERT_SELECTED); |
@@ -64,8 +64,8 @@ void SSLClientAuthObserver::Observe( |
cert_request_info_->host_and_port)) |
return; |
- VLOG(1) << this << " got matching notification and selecting cert " |
- << cert_details->second; |
+ DVLOG(1) << this << " got matching notification and selecting cert " |
+ << cert_details->second; |
StopObserving(); |
callback_.Run(cert_details->second); |
callback_.Reset(); |