summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'Swiften/Avatars/CombinedAvatarProvider.cpp')
-rw-r--r--Swiften/Avatars/CombinedAvatarProvider.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/Swiften/Avatars/CombinedAvatarProvider.cpp b/Swiften/Avatars/CombinedAvatarProvider.cpp
index 6ac31e3..ae0fde3 100644
--- a/Swiften/Avatars/CombinedAvatarProvider.cpp
+++ b/Swiften/Avatars/CombinedAvatarProvider.cpp
@@ -9,15 +9,20 @@
#include <algorithm>
#include <boost/bind.hpp>
+#include <Swiften/Base/Log.h>
+
namespace Swift {
std::string CombinedAvatarProvider::getAvatarHash(const JID& jid) const {
+ SWIFT_LOG(debug) << "JID: " << jid << std::endl;
for (size_t i = 0; i < providers.size(); ++i) {
std::string hash = providers[i]->getAvatarHash(jid);
+ SWIFT_LOG(debug) << "Provider " << providers[i] << ": " << hash << std::endl;
if (!hash.empty()) {
return hash;
}
}
+ SWIFT_LOG(debug) << "No hash found" << std::endl;
return std::string();
}