summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndre Moreira Magalhaes (andrunko) <andre.magalhaes@collabora.co.uk>2011-09-30 10:32:14 -0300
committerAndre Moreira Magalhaes (andrunko) <andre.magalhaes@collabora.co.uk>2011-09-30 13:54:42 -0300
commitdbbfddbbd74a37ddda262efc7067778049d84edc (patch)
treed004f6d60306614fbf83262bc46779baaae4b5f9
parentd5b10054977726a4caa43fd93d77d99704729f2f (diff)
ContactManager: Make debug less verbose when calling RefreshContactInfo.
-rw-r--r--TelepathyQt4/contact-manager.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/TelepathyQt4/contact-manager.cpp b/TelepathyQt4/contact-manager.cpp
index 6a43cd2f..ae633e23 100644
--- a/TelepathyQt4/contact-manager.cpp
+++ b/TelepathyQt4/contact-manager.cpp
@@ -140,7 +140,7 @@ void ContactManager::PendingRefreshContactInfo::refreshInfo()
return;
}
- debug() << "Calling ContactInfo.RefreshContactInfo for handles" << mToRequest.toList();
+ debug() << "Calling ContactInfo.RefreshContactInfo for" << mToRequest.size() << "handles";
Client::ConnectionInterfaceContactInfoInterface *contactInfoInterface =
mConn->interface<Client::ConnectionInterfaceContactInfoInterface>();
Q_ASSERT(contactInfoInterface);
@@ -155,11 +155,11 @@ void ContactManager::PendingRefreshContactInfo::refreshInfo()
void ContactManager::PendingRefreshContactInfo::onRefreshInfoFinished(PendingOperation *op)
{
if (op->isError()) {
- warning() << "ContactInfo.RefreshContactInfo for handles" << mToRequest.toList() <<
- "failed with" << op->errorName() << "-" << op->errorMessage();
+ warning() << "ContactInfo.RefreshContactInfo failed with" <<
+ op->errorName() << "-" << op->errorMessage();
setFinishedWithError(op->errorName(), op->errorMessage());
} else {
- debug() << "Got reply to ContactInfo.RefreshContactInfo for handles" << mToRequest.toList();
+ debug() << "Got reply to ContactInfo.RefreshContactInfo";
setFinished();
}
}