From 83e7e8ecce590d265d9d83613805c91a180bae0f Mon Sep 17 00:00:00 2001 From: Rifat Rahman Date: Thu, 29 Jan 2026 17:58:52 +0000 Subject: [PATCH] refactor(bluetooth): replace println! to debug! --- nmrs/src/core/bluetooth.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nmrs/src/core/bluetooth.rs b/nmrs/src/core/bluetooth.rs index cd7f662a..1aef34c6 100644 --- a/nmrs/src/core/bluetooth.rs +++ b/nmrs/src/core/bluetooth.rs @@ -171,7 +171,7 @@ pub(crate) async fn connect_bluetooth( let connection_settings = bluetooth::build_bluetooth_connection(name, settings, &opts); - println!( + debug!( "Creating Bluetooth connection with settings: {:#?}", connection_settings );