| Index: jingle/notifier/listener/push_notifications_send_update_task.cc
|
| diff --git a/jingle/notifier/listener/push_notifications_send_update_task.cc b/jingle/notifier/listener/push_notifications_send_update_task.cc
|
| index 50ec15e3cf45ab58336d26730ba77e533cc07b25..4e0c12782adc880bdcb45a56b625490860d4568f 100644
|
| --- a/jingle/notifier/listener/push_notifications_send_update_task.cc
|
| +++ b/jingle/notifier/listener/push_notifications_send_update_task.cc
|
| @@ -32,7 +32,7 @@ int PushNotificationsSendUpdateTask::ProcessStart() {
|
| DVLOG(1) << "Sending notification " << notification_.ToString()
|
| << " as stanza " << XmlElementToString(*stanza);
|
| if (SendStanza(stanza.get()) != buzz::XMPP_RETURN_OK) {
|
| - LOG(WARNING) << "Could not send stanza " << XmlElementToString(*stanza);
|
| + DLOG(WARNING) << "Could not send stanza " << XmlElementToString(*stanza);
|
| }
|
| return STATE_DONE;
|
| }
|
| @@ -72,8 +72,8 @@ buzz::XmlElement* PushNotificationsSendUpdateTask::MakeUpdateMessage(
|
| if (!recipient.user_specific_data.empty()) {
|
| std::string base64_data;
|
| if (!base::Base64Encode(recipient.user_specific_data, &base64_data)) {
|
| - LOG(WARNING) << "Could not encode data "
|
| - << recipient.user_specific_data;
|
| + DLOG(WARNING) << "Could not encode data "
|
| + << recipient.user_specific_data;
|
| } else {
|
| recipient_element->SetBodyText(base64_data);
|
| }
|
| @@ -83,7 +83,7 @@ buzz::XmlElement* PushNotificationsSendUpdateTask::MakeUpdateMessage(
|
| buzz::XmlElement* data = new buzz::XmlElement(kQnData, true);
|
| std::string base64_data;
|
| if (!base::Base64Encode(notification.data, &base64_data)) {
|
| - LOG(WARNING) << "Could not encode data " << notification.data;
|
| + DLOG(WARNING) << "Could not encode data " << notification.data;
|
| }
|
| data->SetBodyText(base64_data);
|
| push->AddElement(data);
|
|
|