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

Unified Diff: dbus/object_proxy.cc

Issue 8296005: dbus: Silence VLOG(1) spam from ObjectProxy::HandleMessage(). (Closed) Base URL: svn://svn.chromium.org/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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: dbus/object_proxy.cc
diff --git a/dbus/object_proxy.cc b/dbus/object_proxy.cc
index f4e4ac09952f560392c38d7656b963b2719dd080..1a3b7e04872b64801c9f4e5fbf65ad90a2007d06 100644
--- a/dbus/object_proxy.cc
+++ b/dbus/object_proxy.cc
@@ -341,8 +341,6 @@ DBusHandlerResult ObjectProxy::HandleMessage(
scoped_ptr<Signal> signal(
Signal::FromRawMessage(raw_message));
- VLOG(1) << "Signal received: " << signal->ToString();
-
const std::string interface = signal->GetInterface();
const std::string member = signal->GetMember();
@@ -354,6 +352,7 @@ DBusHandlerResult ObjectProxy::HandleMessage(
// Don't know about the signal.
return DBUS_HANDLER_RESULT_NOT_YET_HANDLED;
}
+ VLOG(1) << "Signal received: " << signal->ToString();
const base::TimeTicks start_time = base::TimeTicks::Now();
if (bus_->HasDBusThread()) {
« 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