mirror of
https://gitlab.freedesktop.org/libfprint/fprintd.git
synced 2026-01-03 17:30:17 +01:00
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). https://bugs.freedesktop.org/show_bug.cgi?id=71889
This commit is contained in:
parent
4f9256c033
commit
f94c8727d2
1 changed files with 4 additions and 4 deletions
|
|
@ -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);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue