Skip to content

Commit

Permalink
Use correct log level for extra-verbose output
Browse files Browse the repository at this point in the history
  • Loading branch information
chriadam committed Nov 25, 2020
1 parent 06f8f10 commit 6df8d78
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/google/google-contacts/googlecontactstream.cpp
Expand Up @@ -707,7 +707,7 @@ QContactDetail GoogleContactStream::handleEntryPhoneNumber()
: QString();
QString number = mXmlReader->readElementText();

SOCIALD_LOG_DEBUG("received phone type information from Google:" << rel << "for number:" << number);
SOCIALD_LOG_TRACE("received phone type information from Google:" << rel << "for number:" << number);
if (rel == QStringLiteral("http://schemas.google.com/g/2005#home")) {
phone.setSubTypes(QList<int>() << QContactPhoneNumber::SubTypeLandline);
phone.setContexts(QContactDetail::ContextHome);
Expand Down Expand Up @@ -781,7 +781,7 @@ QContactDetail GoogleContactStream::handleEntryStructuredPostalAddress()
}

if (!rel.isEmpty()) {
SOCIALD_LOG_DEBUG("received address type information from Google:" << rel << "for address:" << address.street());
SOCIALD_LOG_TRACE("received address type information from Google:" << rel << "for address:" << address.street());
if (rel == QStringLiteral("http://schemas.google.com/g/2005#home")) {
address.setContexts(QContactDetail::ContextHome);
} else if (rel == QStringLiteral("http://schemas.google.com/g/2005#work")) {
Expand Down

0 comments on commit 6df8d78

Please sign in to comment.