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

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

Issue 8370022: Convert the non-debug logging in chrome/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
Index: content/common/gpu/gpu_channel.cc
===================================================================
--- content/common/gpu/gpu_channel.cc (revision 106774)
+++ content/common/gpu/gpu_channel.cc (working copy)
@@ -67,7 +67,7 @@
bool GpuChannel::OnMessageReceived(const IPC::Message& message) {
if (log_messages_) {
- VLOG(1) << "received message @" << &message << " on channel @" << this
+ DVLOG(1) << "received message @" << &message << " on channel @" << this
<< " with type " << message.type();
}
@@ -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()) {

Powered by Google App Engine
This is Rietveld 408576698