From 19a91f4807b868698066b67b1b0c0251ea9ebbf9 Mon Sep 17 00:00:00 2001 From: George Hazan Date: Fri, 29 May 2020 17:42:33 +0300 Subject: more logs --- plugins/Dbx_mdbx/src/dbcontacts.cpp | 3 +++ 1 file changed, 3 insertions(+) (limited to 'plugins/Dbx_mdbx/src') diff --git a/plugins/Dbx_mdbx/src/dbcontacts.cpp b/plugins/Dbx_mdbx/src/dbcontacts.cpp index 90a8a4bc90..239cec81b9 100644 --- a/plugins/Dbx_mdbx/src/dbcontacts.cpp +++ b/plugins/Dbx_mdbx/src/dbcontacts.cpp @@ -48,6 +48,7 @@ LONG CDbxMDBX::DeleteContact(MCONTACT contactID) NotifyEventHooks(g_hevContactDeleted, contactID, 0); // remove event sorting keys owned by contact + Netlib_Log(0, "Started wipe history"); { DBEventSortingKey keyS = { contactID, 0, 0 }; MDBX_val key = { &keyS, sizeof(keyS) }, data; @@ -74,6 +75,7 @@ LONG CDbxMDBX::DeleteContact(MCONTACT contactID) } // remove all contact's settings + Netlib_Log(0, "Started wipe settings"); { DBSettingKey keyS = { contactID, 0, 0 }; MDBX_val key = { &keyS, sizeof(keyS) }, data; @@ -95,6 +97,7 @@ LONG CDbxMDBX::DeleteContact(MCONTACT contactID) } // finally remove the contact itself + Netlib_Log(0, "Started wipe contact itself"); MDBX_val key = { &contactID, sizeof(MCONTACT) }; { txn_ptr trnlck(StartTran()); -- cgit v1.2.3