Skip to content
Snippets Groups Projects
Commit a27c344c authored by Sébastien Blin's avatar Sébastien Blin
Browse files

misc: clarify log

Change-Id: I66b2b8cb1c289575b5568cc40f7402282bede314
parent a65c4f28
No related branches found
No related tags found
No related merge requests found
......@@ -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;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment