From c1815fdfdc37759f476bb749f8eaf1ef755d03ec Mon Sep 17 00:00:00 2001 From: zhom <2717306+zhom@users.noreply.github.com> Date: Thu, 7 Aug 2025 00:45:36 +0400 Subject: [PATCH] refactor: don't show logs on camoufox process termination --- src-tauri/src/profile/manager.rs | 6 ------ 1 file changed, 6 deletions(-) diff --git a/src-tauri/src/profile/manager.rs b/src-tauri/src/profile/manager.rs index a896a8f..3237ce4 100644 --- a/src-tauri/src/profile/manager.rs +++ b/src-tauri/src/profile/manager.rs @@ -835,12 +835,6 @@ impl ProfileManager { if let Err(e) = app_handle.emit("profile-updated", &updated_profile) { println!("Warning: Failed to emit profile update event: {e}"); } - - // Only log once when the process actually stops (when we had a PID but now don't) - println!( - "Camoufox process has stopped for profile '{}'", - profile.name - ); } Ok(false) }