mirror of
https://gitlab.com/mishakmak/pam-fprint-grosshack.git
synced 2026-04-09 12:23:34 +02:00
Debug output cleanup
Remove a few debug messages, and merge another one.
This commit is contained in:
committed by
Daniel Drake
parent
e8c36e9592
commit
974e022c4d
@ -441,9 +441,8 @@ static void fprint_device_claim(FprintDevice *rdev,
|
|||||||
priv->username = user;
|
priv->username = user;
|
||||||
priv->sender = sender;
|
priv->sender = sender;
|
||||||
|
|
||||||
g_message ("user claiming the device: %s", priv->username);
|
g_message ("user '%s' claiming the device: %s", priv->username, priv->id);
|
||||||
|
|
||||||
g_message("claiming device %d", priv->id);
|
|
||||||
priv->session = g_slice_new0(struct session_data);
|
priv->session = g_slice_new0(struct session_data);
|
||||||
priv->session->context_claim_device = context;
|
priv->session->context_claim_device = context;
|
||||||
|
|
||||||
@ -684,13 +683,11 @@ static void fprint_device_list_enrolled_fingers(FprintDevice *rdev,
|
|||||||
GArray *ret;
|
GArray *ret;
|
||||||
char *user;
|
char *user;
|
||||||
|
|
||||||
g_message ("orig username: %s", username);
|
|
||||||
user = _fprint_device_check_for_username (rdev,
|
user = _fprint_device_check_for_username (rdev,
|
||||||
context,
|
context,
|
||||||
username,
|
username,
|
||||||
NULL,
|
NULL,
|
||||||
&error);
|
&error);
|
||||||
g_message ("user: %s", user);
|
|
||||||
if (user == NULL) {
|
if (user == NULL) {
|
||||||
dbus_g_method_return_error (context, error);
|
dbus_g_method_return_error (context, error);
|
||||||
g_error_free (error);
|
g_error_free (error);
|
||||||
|
|||||||
Reference in New Issue
Block a user