summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKevin Smith <git@kismith.co.uk>2013-12-20 16:33:18 (GMT)
committerSwift Review <review@swift.im>2014-05-18 19:50:47 (GMT)
commitd594bc3e3aace883f1e98e699a30428a52a78d50 (patch)
treee0c5b98f963b991684af2726379d2af3cc90e402 /Swiften/Avatars
parentfa8fd85f5c451648bb7cfbe275db19efa921d850 (diff)
downloadswift-d594bc3e3aace883f1e98e699a30428a52a78d50.zip
swift-d594bc3e3aace883f1e98e699a30428a52a78d50.tar.bz2
Replace accidental cerr with SWIFT_LOG
Change-Id: I1801265c1b65eacf97e1cd3c69bedeef63cca898
Diffstat (limited to 'Swiften/Avatars')
-rw-r--r--Swiften/Avatars/VCardUpdateAvatarManager.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/Swiften/Avatars/VCardUpdateAvatarManager.cpp b/Swiften/Avatars/VCardUpdateAvatarManager.cpp
index adbefd5..3a32889 100644
--- a/Swiften/Avatars/VCardUpdateAvatarManager.cpp
+++ b/Swiften/Avatars/VCardUpdateAvatarManager.cpp
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2010 Remko Tronçon
+ * Copyright (c) 2010-2014 Remko Tronçon
* Licensed under the GNU General Public License v3.
* See Documentation/Licenses/GPLv3.txt for more information.
*/
@@ -46,7 +46,7 @@ void VCardUpdateAvatarManager::handlePresenceReceived(boost::shared_ptr<Presence
void VCardUpdateAvatarManager::handleVCardChanged(const JID& from, VCard::ref vCard) {
if (!vCard) {
- std::cerr << "Warning: " << from << ": null vcard payload" << std::endl;
+ SWIFT_LOG(debug) << "Missing element: " << from << ": null vcard payload" << std::endl;
return;
}