Commit 5da5dfb5 authored by sergeygs@chromium.org's avatar sergeygs@chromium.org

Lower logging level to avoid spamming the logs

@tapted: assigning you as a reviewer for the sake of mixing it up (see @miket's email re assigning new reviewers to CLs) and because it's a trivial change.

Review URL: https://codereview.chromium.org/100983002

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@238371 0039d316-1c4b-4281-b951-d872f2087c98
parent 764bad33
......@@ -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.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment