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

Unified Diff: chrome/browser/apps/app_url_redirector.cc

Issue 100983002: Lowered logging level for url_handlers (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/apps/app_url_redirector.cc
diff --git a/chrome/browser/apps/app_url_redirector.cc b/chrome/browser/apps/app_url_redirector.cc
index 8a6934ac04b26ba60052d3345d613e17fa64f223..2588cd8eeb9fac637e26525b00f18c42671df6ab 100644
--- a/chrome/browser/apps/app_url_redirector.cc
+++ b/chrome/browser/apps/app_url_redirector.cc
@@ -57,7 +57,7 @@ bool LaunchAppWithUrl(
Profile* profile =
Profile::FromBrowserContext(web_contents->GetBrowserContext());
- DVLOG(0) << "Launching app handler with URL: "
+ DVLOG(1) << "Launching app handler with URL: "
<< params.url().spec() << " -> "
<< app->name() << "(" << app->id() << "):" << handler_id;
apps::LaunchPlatformAppWithUrl(
@@ -72,7 +72,7 @@ bool LaunchAppWithUrl(
content::ResourceThrottle*
AppUrlRedirector::MaybeCreateThrottleFor(net::URLRequest* request,
ProfileIOData* profile_io_data) {
- DVLOG(0) << "Considering URL for redirection: "
+ DVLOG(1) << "Considering URL for redirection: "
<< request->method() << " " << request->url().spec();
// Support only GET for now.
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698