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(),