remove useless logs

This commit is contained in:
Benjamin Reis 2017-02-10 17:13:52 +01:00
parent 10043256cf
commit 7055204182
2 changed files with 0 additions and 4 deletions

View file

@ -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);
}

View file

@ -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);
}