From 5d0481b03142fde14441af779c07c2b7074a5c78 Mon Sep 17 00:00:00 2001 From: Benjamin Berg Date: Thu, 3 Sep 2020 09:00:01 +0200 Subject: [PATCH] context: Lower severity of warning if USB fails to initialise This is unlikely to happen in a real world scenario and currently breaks running the CI test (not the umockdev based ones) while building the flatpak. Lower the severity to avoid aborting because there is a warning. --- libfprint/fp-context.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libfprint/fp-context.c b/libfprint/fp-context.c index 6971763a..c2b4eb25 100644 --- a/libfprint/fp-context.c +++ b/libfprint/fp-context.c @@ -290,7 +290,7 @@ fp_context_init (FpContext *self) priv->usb_ctx = g_usb_context_new (&error); if (!priv->usb_ctx) { - fp_warn ("Could not initialise USB Subsystem: %s", error->message); + g_message ("Could not initialise USB Subsystem: %s", error->message); } else {