mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-02-07 14:18:25 +00:00
remove useless logs
This commit is contained in:
parent
10043256cf
commit
7055204182
2 changed files with 0 additions and 4 deletions
|
|
@ -303,7 +303,6 @@ int linphone_friend_set_address(LinphoneFriend *lf, const LinphoneAddress *addr)
|
|||
address = linphone_address_as_string_uri_only(fr);
|
||||
if(lf->friend_list) {
|
||||
bctbx_pair_t *pair = (bctbx_pair_t*) bctbx_pair_cchar_new(address, linphone_friend_ref(lf));
|
||||
ms_message("inserting %s in map with friend [%p]", address, lf);
|
||||
bctbx_map_cchar_insert_and_delete(lf->friend_list->friends_map_uri, pair);
|
||||
}
|
||||
|
||||
|
|
@ -333,7 +332,6 @@ void linphone_friend_add_address(LinphoneFriend *lf, const LinphoneAddress *addr
|
|||
uri = linphone_address_as_string_uri_only(fr);
|
||||
if(lf->friend_list) {
|
||||
bctbx_pair_t *pair = (bctbx_pair_t*) bctbx_pair_cchar_new(uri, linphone_friend_ref(lf));
|
||||
ms_message("inserting %s in map with friend [%p]", uri, lf);
|
||||
bctbx_map_cchar_insert_and_delete(lf->friend_list->friends_map_uri, pair);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -547,7 +547,6 @@ LinphoneFriendListStatus linphone_friend_list_import_friend(LinphoneFriendList *
|
|||
const char *uri = linphone_friend_phone_number_to_sip_uri(lf, number);
|
||||
if(uri) {
|
||||
bctbx_pair_t *pair = (bctbx_pair_t*) bctbx_pair_cchar_new(uri, linphone_friend_ref(lf));
|
||||
ms_message("inserting %s in map with friend [%p]", uri, lf);
|
||||
bctbx_map_cchar_insert_and_delete(list->friends_map_uri, pair);
|
||||
ms_free(uri);
|
||||
}
|
||||
|
|
@ -561,7 +560,6 @@ LinphoneFriendListStatus linphone_friend_list_import_friend(LinphoneFriendList *
|
|||
char *uri = linphone_address_as_string_uri_only(lfaddr);
|
||||
if(uri) {
|
||||
bctbx_pair_t *pair = (bctbx_pair_t*) bctbx_pair_cchar_new(uri, linphone_friend_ref(lf));
|
||||
ms_message("inserting %s in map with friend [%p]", uri, lf);
|
||||
bctbx_map_cchar_insert_and_delete(list->friends_map_uri, pair);
|
||||
ms_free(uri);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue