summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorErick Pérez Castellanos <erick.red@gmail.com>2014-09-30 09:17:39 -0400
committerErick Pérez Castellanos <erick.red@gmail.com>2014-09-30 09:17:39 -0400
commite8370f2f1d4ed2dd0ac69bf3e058564f7679ad83 (patch)
treef3bb004364ae69941a80b603d10a0ecde499f3ca
parent0f85ce20657280f35f58c690a9479523b45ea2d9 (diff)
downloadgnome-contacts-e8370f2f1d4ed2dd0ac69bf3e058564f7679ad83.tar.gz
SearchProvider: remove more debug statements
-rw-r--r--src/contacts-shell-search-provider.vala6
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 ();