[gnome-contacts] SearchProvider: remove more debug statements



commit e8370f2f1d4ed2dd0ac69bf3e058564f7679ad83
Author: Erick Pérez Castellanos <erick red gmail com>
Date:   Tue Sep 30 09:17:39 2014 -0400

    SearchProvider: remove more debug statements

 src/contacts-shell-search-provider.vala |    6 ------
 1 files changed, 0 insertions(+), 6 deletions(-)
---
diff --git a/src/contacts-shell-search-provider.vala b/src/contacts-shell-search-provider.vala
index 3d67363..2940db4 100644
--- a/src/contacts-shell-search-provider.vala
+++ b/src/contacts-shell-search-provider.vala
@@ -78,7 +78,6 @@ public class Contacts.SearchProvider : Object {
 
   public async string[] GetSubsearchResultSet (string[] previous_results,
                                               string[] new_terms) {
-    warning ("GetSubsearchResultSet %s", string.joinv ("; ", new_terms));
     return yield do_search (new_terms);
   }
 
@@ -105,20 +104,16 @@ public class Contacts.SearchProvider : Object {
       results.add (meta);
     }
     app.release ();
-    warning ("GetResultMetas: RETURNED");
     return results.to_array ();
   }
 
   public async HashTable<string, Variant>[] GetResultMetas (string[] ids) {
-    warning ("GetResultMetas: %s", string.joinv ("; ", ids));
     return yield get_metas (ids);
   }
 
   public void ActivateResult (string search_id, string[] terms, uint32 timestamp) {
     app.hold ();
 
-    warning ("ActivateResult: %s", search_id);
-
     var contact = contacts_map.get (search_id);
 
     if (contact == null) {
@@ -151,7 +146,6 @@ public class Contacts.SearchProvider : Object {
        stderr.printf ("Failed to launch Contacts for search\n");
     } catch (SpawnError error) {
       stderr.printf ("Failed to launch Contacts for search\n");
-      warning (error.message);
     }
 
     app.release ();


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]