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

Unified Diff: jingle/notifier/listener/push_notifications_listen_task.cc

Issue 10828264: Clean up logging for push_notifications_*.cc (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 4 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: jingle/notifier/listener/push_notifications_listen_task.cc
diff --git a/jingle/notifier/listener/push_notifications_listen_task.cc b/jingle/notifier/listener/push_notifications_listen_task.cc
index 3a665ee2cfa2f737f1d165475d1645907005cb08..ad1da9f9debd3ec4e73566760891badffbfa9a13 100644
--- a/jingle/notifier/listener/push_notifications_listen_task.cc
+++ b/jingle/notifier/listener/push_notifications_listen_task.cc
@@ -38,7 +38,7 @@ int PushNotificationsListenTask::ProcessResponse() {
return STATE_BLOCKED;
}
- VLOG(1) << "Received stanza " << XmlElementToString(*stanza);
+ DVLOG(1) << "Received stanza " << XmlElementToString(*stanza);
// The push notifications service does not need us to acknowledge receipt of
// the notification to the buzz server.
@@ -72,7 +72,7 @@ int PushNotificationsListenTask::ProcessResponse() {
LOG(WARNING) << "No data element found in push element "
<< XmlElementToString(*push_element);
}
- VLOG(1) << "Received notification " << notification.ToString();
+ DVLOG(1) << "Received notification " << notification.ToString();
delegate_->OnNotificationReceived(notification);
} else {
LOG(WARNING) << "No push element found in stanza "

Powered by Google App Engine
This is Rietveld 408576698