summaryrefslogtreecommitdiffstats
path: root/chrome/browser/ssl/ssl_error_handler.cc
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/browser/ssl/ssl_error_handler.cc')
-rw-r--r--chrome/browser/ssl/ssl_error_handler.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome/browser/ssl/ssl_error_handler.cc b/chrome/browser/ssl/ssl_error_handler.cc
index fb26005..d05c17f 100644
--- a/chrome/browser/ssl/ssl_error_handler.cc
+++ b/chrome/browser/ssl/ssl_error_handler.cc
@@ -130,7 +130,7 @@ void SSLErrorHandler::CompleteCancelRequest(int error) {
if (request) {
// The request can be NULL if it was cancelled by the renderer (as the
// result of the user navigating to a new page from the location bar).
- DLOG(INFO) << "CompleteCancelRequest() url: " << request->url().spec();
+ DVLOG(1) << "CompleteCancelRequest() url: " << request->url().spec();
SSLCertErrorHandler* cert_error = AsSSLCertErrorHandler();
if (cert_error)
request->SimulateSSLError(error, cert_error->ssl_info());
@@ -157,7 +157,7 @@ void SSLErrorHandler::CompleteContinueRequest() {
if (request) {
// The request can be NULL if it was cancelled by the renderer (as the
// result of the user navigating to a new page from the location bar).
- DLOG(INFO) << "CompleteContinueRequest() url: " << request->url().spec();
+ DVLOG(1) << "CompleteContinueRequest() url: " << request->url().spec();
request->ContinueDespiteLastError();
}
request_has_been_notified_ = true;