summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarlos Garnacho <carlosg@gnome.org>2015-07-05 20:03:08 +0200
committerCarlos Garnacho <carlosg@gnome.org>2015-07-05 20:27:49 +0200
commitfb2df3044f9145dcea2d0e5106e51edc4ab5101b (patch)
tree94706dc61dd6258b8701f1bf4e81993966e248dd
parentf13cc546723eebb130b8cd693a57546e90c4a193 (diff)
downloadtracker-fb2df3044f9145dcea2d0e5106e51edc4ab5101b.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);
}