summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarlos Garnacho <carlosg@gnome.org>2015-07-05 20:03:08 +0200
committerMartyn Russell <martyn@lanedo.com>2015-07-31 15:58:02 +0100
commit5dcb3bc9fcc0a4ff48d270a6e4be2e2cd7a2ea43 (patch)
tree112a69ac7899fbcf3dbfd2bbc715754f56e46dee
parentb222fdba41ddbb9ed3b870276dce2313d279156c (diff)
downloadtracker-5dcb3bc9fcc0a4ff48d270a6e4be2e2cd7a2ea43.tar.gz
tracker-preferences: Remove needless prints
These won't tell a lot, since we're killing the whole thing.
-rw-r--r--src/tracker-preferences/tracker-preferences.vala10
1 files changed, 1 insertions, 9 deletions
diff --git a/src/tracker-preferences/tracker-preferences.vala b/src/tracker-preferences/tracker-preferences.vala
index 264725b6c..675973451 100644
--- a/src/tracker-preferences/tracker-preferences.vala
+++ b/src/tracker-preferences/tracker-preferences.vala
@@ -244,8 +244,6 @@ public class Tracker.Preferences {
}
void reindex () {
- stdout.printf ("Reindexing...\n");
-
string output, errors;
int status;
@@ -261,13 +259,9 @@ public class Tracker.Preferences {
} catch (GLib.Error e) {
stderr.printf ("Could not reindex: %s", e.message);
}
- stdout.printf ("%s\n", output);
- stdout.printf ("Finishing...\n");
}
void restart () {
- stdout.printf ("Restarting...\n");
-
string output, errors;
int status;
@@ -283,8 +277,6 @@ public class Tracker.Preferences {
} catch (GLib.Error e) {
stderr.printf ("Could not restart: %s", e.message);
}
- stdout.printf ("%s\n", output);
- stdout.printf ("Finishing...\n");
}
// This function is used to fix up the parameter ordering for callbacks
@@ -298,7 +290,7 @@ public class Tracker.Preferences {
void* sym;
if (!module.symbol (handler_name, out sym)) {
- stdout.printf ("Symbol not found! %s\n", handler_name);
+ warning ("Symbol not found! %s\n", handler_name);
} else {
Signal.connect (object, signal_name, (GLib.Callback) sym, this);
}