]> source.dussan.org Git - nextcloud-server.git/commitdiff
Remove excessive debugging.
authorThomas Tanghus <thomas@tanghus.net>
Sun, 24 Jun 2012 20:24:54 +0000 (22:24 +0200)
committerThomas Tanghus <thomas@tanghus.net>
Sun, 24 Jun 2012 20:25:32 +0000 (22:25 +0200)
apps/contacts/ajax/contacts.php

index 16730ec9474a96e2007652cd7dc9db50f8e51df6..2ce6de1696b6e146212db34034e4557d942ba1ed 100644 (file)
@@ -18,7 +18,6 @@ OCP\JSON::checkLoggedIn();
 OCP\JSON::checkAppEnabled('contacts');
 
 $active_addressbooks = OC_Contacts_Addressbook::active(OCP\USER::getUser());
-error_log('active_addressbooks: '.print_r($active_addressbooks, true));
 
 $contacts_addressbook = array();
 $ids = array();
@@ -29,9 +28,7 @@ foreach($active_addressbooks as $addressbook) {
                $contacts_addressbook[$addressbook['id']]['displayname'] = $addressbook['displayname'];
        }
 }      
-error_log('ids: '.print_r($ids, true));
 $contacts_alphabet = OC_Contacts_VCard::all($ids);
-error_log('contacts_alphabet: '.print_r($contacts_alphabet, true));
 
 // Our new array for the contacts sorted by addressbook
 foreach($contacts_alphabet as $contact) {