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

Unified Diff: base/message_pump_glib_x.cc

Issue 7024055: Use VLOG to suppress messages that aren't useful for everyone. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 9 years, 6 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: base/message_pump_glib_x.cc
diff --git a/base/message_pump_glib_x.cc b/base/message_pump_glib_x.cc
index d45ce7e7c878efd50b9ed11499c2fb50014cf1e0..430d9379944dd01d3efe5b50f5cc5eb40e49067f 100644
--- a/base/message_pump_glib_x.cc
+++ b/base/message_pump_glib_x.cc
@@ -79,7 +79,7 @@ bool MessagePumpGlibX::ProcessXEvent(XEvent* xev) {
should_quit = true;
Quit();
} else if (status == MessagePumpGlibXDispatcher::EVENT_IGNORED) {
- DLOG(WARNING) << "Event (" << xev->type << ") not handled.";
+ VLOG(1) << "Event (" << xev->type << ") not handled.";
}
}
@@ -213,14 +213,14 @@ void MessagePumpGlibX::InitializeXInput2(void) {
int event, err;
if (!XQueryExtension(xdisplay, "XInputExtension", &xiopcode_, &event, &err)) {
- DLOG(WARNING) << "X Input extension not available.";
+ VLOG(1) << "X Input extension not available.";
xiopcode_ = -1;
return;
}
int major = 2, minor = 0;
if (XIQueryVersion(xdisplay, &major, &minor) == BadRequest) {
- DLOG(WARNING) << "XInput2 not supported in the server.";
+ VLOG(1) << "XInput2 not supported in the server.";
xiopcode_ = -1;
return;
}
« 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