From e8370f2f1d4ed2dd0ac69bf3e058564f7679ad83 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Erick=20P=C3=A9rez=20Castellanos?= Date: Tue, 30 Sep 2014 09:17:39 -0400 Subject: SearchProvider: remove more debug statements --- src/contacts-shell-search-provider.vala | 6 ------ 1 file changed, 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[] 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 (); -- cgit v1.2.1