From 157ec7e5449fe0a89d4471d1cbc468d9a24959b0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marco=20Trevisan=20=28Trevi=C3=B1o=29?= Date: Sat, 18 Jul 2026 12:21:14 +0200 Subject: [PATCH] fp-device: Add debug for task cancellation requests --- libfprint/fp-device.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/libfprint/fp-device.c b/libfprint/fp-device.c index 00ef2faa..115063d5 100644 --- a/libfprint/fp-device.c +++ b/libfprint/fp-device.c @@ -128,6 +128,9 @@ fp_device_task_cancelled_cb (GCancellable *cancellable, FpDevice *self) { FpDevicePrivate *priv = fp_device_get_instance_private (self); + g_debug ("Task cancellable for operation %d cancelled", + priv->current_action); + g_cancellable_cancel (priv->current_cancellable); }