1
0
Fork 0
mirror of https://git.jami.net/savoirfairelinux/jami-client-qt.git synced 2025-07-24 17:35:43 +02:00

misc: clarify log

Change-Id: I66b2b8cb1c289575b5568cc40f7402282bede314
This commit is contained in:
Sébastien Blin 2023-06-14 11:21:16 -04:00
parent a65c4f28e1
commit a27c344cb7

View file

@ -78,13 +78,13 @@ NameDirectoryPrivate::slotRegisteredNameFound(const QString& accountId,
{
switch (static_cast<NameDirectory::LookupStatus>(status)) {
case NameDirectory::LookupStatus::INVALID_NAME:
qDebug() << "lookup name is INVALID:" << name << accountId;
qDebug() << "lookup name is INVALID: address: " << address << " name: " << name << " accountId: " << accountId;
break;
case NameDirectory::LookupStatus::NOT_FOUND:
qDebug() << "lookup name NOT FOUND:" << name << accountId;
qDebug() << "lookup name NOT FOUND: address: " << address << " name: " << name << " accountId: " << accountId;
break;
case NameDirectory::LookupStatus::ERROR:
qDebug() << "lookup name ERROR:" << name << accountId;
qDebug() << "lookup name ERROR: address: " << address << " name: " << name << " accountId: " << accountId;
break;
case NameDirectory::LookupStatus::SUCCESS:
break;