From 9e7c798d0e827d6e8948bbab3ce679455170a922 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Anders=20=C3=85berg?= Date: Tue, 14 Oct 2025 00:55:29 +0200 Subject: [PATCH] Update apps/desktop/desktop_native/napi/src/lib.rs Co-authored-by: neuronull <9162534+neuronull@users.noreply.github.com> --- apps/desktop/desktop_native/napi/src/lib.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/desktop/desktop_native/napi/src/lib.rs b/apps/desktop/desktop_native/napi/src/lib.rs index f5048827e79..a1ddf304113 100644 --- a/apps/desktop/desktop_native/napi/src/lib.rs +++ b/apps/desktop/desktop_native/napi/src/lib.rs @@ -754,8 +754,8 @@ pub mod autofill { .call(value, ThreadsafeFunctionCallMode::NonBlocking); continue; } - Err(e) => { - println!("[ERROR] Error deserializing native status: {e}"); + Err(error) => { + error!(%error, "Unable to deserialze native status."); } }