From cb214eff5772785784d1510487df32fb0f9dada2 Mon Sep 17 00:00:00 2001 From: Youwen Wu Date: Mon, 11 Mar 2024 09:07:45 -0700 Subject: [PATCH] chore: change println! to tracing::info --- client/src-tauri/src/close_splashscreen.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/src-tauri/src/close_splashscreen.rs b/client/src-tauri/src/close_splashscreen.rs index aeb17ff..98cd5c1 100644 --- a/client/src-tauri/src/close_splashscreen.rs +++ b/client/src-tauri/src/close_splashscreen.rs @@ -3,7 +3,7 @@ use tauri::{Manager, Window}; // This command must be async so that it doesn't run on the main thread. #[tauri::command] pub async fn close_splashscreen(window: Window) { - println!("Closing splashscreen"); + tracing::info!("Closing splashscreen"); // Close splashscreen match window.get_window("splashscreen") { Some(window) => window.close().unwrap(),