From 8a4a4d526fa29e46293eaf1c0904d4529b6d3783 Mon Sep 17 00:00:00 2001 From: Colin Walters Date: Thu, 21 Nov 2013 15:03:16 -0500 Subject: [PATCH] main: Don't log about normal operation Administrators don't need to see this stuff on every boot. The system bus itself already logs this anyways (which is itself a bit too chatty). --- src/main.c | 8 ++++---- 1 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/main.c b/src/main.c index 0a0c5b4..5301ff9 100644 --- a/src/main.c +++ b/src/main.c @@ -358,17 +358,17 @@ int main(int argc, char **argv) goto err; } - g_print("Launching FprintObject\n"); + g_debug("Launching FprintObject"); /* create the one instance of the Manager object to be shared between * all fprintd users */ manager = fprint_manager_new(no_timeout); - g_message("D-Bus service launched with name: %s", FPRINT_SERVICE_NAME); + g_debug("D-Bus service launched with name: %s", FPRINT_SERVICE_NAME); - g_message("entering main loop"); + g_debug("entering main loop"); g_main_loop_run(loop); - g_message("main loop completed"); + g_debug("main loop completed"); g_object_unref (manager); -- 1.7.1