mirror of
https://gitlab.com/mishakmak/pam-fprint-grosshack.git
synced 2026-04-09 04:13:33 +02: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:
committed by
Bastien Nocera
parent
4f9256c033
commit
f94c8727d2
@ -358,17 +358,17 @@ int main(int argc, char **argv)
|
|||||||
goto err;
|
goto err;
|
||||||
}
|
}
|
||||||
|
|
||||||
g_print("Launching FprintObject\n");
|
g_debug("Launching FprintObject");
|
||||||
|
|
||||||
/* create the one instance of the Manager object to be shared between
|
/* create the one instance of the Manager object to be shared between
|
||||||
* all fprintd users */
|
* all fprintd users */
|
||||||
manager = fprint_manager_new(no_timeout);
|
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_main_loop_run(loop);
|
||||||
g_message("main loop completed");
|
g_debug("main loop completed");
|
||||||
|
|
||||||
g_object_unref (manager);
|
g_object_unref (manager);
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user