diff options
Diffstat (limited to 'protocols/Tox/src/tox_contacts.cpp')
-rw-r--r-- | protocols/Tox/src/tox_contacts.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/protocols/Tox/src/tox_contacts.cpp b/protocols/Tox/src/tox_contacts.cpp index fe02760f78..37a5cc1f11 100644 --- a/protocols/Tox/src/tox_contacts.cpp +++ b/protocols/Tox/src/tox_contacts.cpp @@ -111,6 +111,9 @@ void CToxProto::LoadContactList() tox_get_client_id(tox, friends[i], &clientId[0]);
std::string toxId = DataToHexString(clientId);
+ debugLogA("CToxProto::SendMsg: friend id is %s", toxId.c_str());
+ debugLogA("CToxProto::SendMsg: friend number is %d", friends[i]);
+
MCONTACT hContact = AddContact(toxId.c_str());
if (hContact)
{
|