diff --git a/src/user.cpp b/src/user.cpp index ac5199806b63c3ba6db7b19de16e2ce419f0d5aa..e6d6e832c9a887c2f8f76bfbc3937acafdff822e 100644 --- a/src/user.cpp +++ b/src/user.cpp @@ -90,12 +90,12 @@ Swift::JID User::getJIDWithFeature(const std::string &feature) { continue; if (discoInfo->hasFeature(feature)) { - LOG4CXX_INFO(logger, m_jid.toString() << ": Found JID with " << feature << "feature: " << presence->getFrom().toString()); + LOG4CXX_INFO(logger, m_jid.toString() << ": Found JID with " << feature << " feature: " << presence->getFrom().toString()); return presence->getFrom(); } } - LOG4CXX_INFO(logger, m_jid.toString() << ": No JID with " << feature << "feature"); + LOG4CXX_INFO(logger, m_jid.toString() << ": No JID with " << feature << " feature"); return jid; }