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

Unified Diff: content/common/gpu/gpu_channel.cc

Issue 8416055: Convert some non-debug logging on content/common to debug logging. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 years, 2 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
« no previous file with comments | « content/common/chrome_application_mac.mm ('k') | content/common/gpu/gpu_command_buffer_stub.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/common/gpu/gpu_channel.cc
===================================================================
--- content/common/gpu/gpu_channel.cc (revision 107816)
+++ content/common/gpu/gpu_channel.cc (working copy)
@@ -1,4 +1,4 @@
-// Copyright (c) 2011 The Chromium Authors. All rights reserved.
+
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
@@ -67,8 +67,8 @@
bool GpuChannel::OnMessageReceived(const IPC::Message& message) {
if (log_messages_) {
- VLOG(1) << "received message @" << &message << " on channel @" << this
- << " with type " << message.type();
+ DVLOG(1) << "received message @" << &message << " on channel @" << this
+ << " with type " << message.type();
}
// Control messages are not deferred and can be handled out of order with
@@ -105,8 +105,8 @@
// process. This could result in deadlock.
DCHECK(!message->is_sync());
if (log_messages_) {
- VLOG(1) << "sending message @" << message << " on channel @" << this
- << " with type " << message->type();
+ DVLOG(1) << "sending message @" << message << " on channel @" << this
+ << " with type " << message->type();
}
if (!channel_.get()) {
« no previous file with comments | « content/common/chrome_application_mac.mm ('k') | content/common/gpu/gpu_command_buffer_stub.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698