diff --git a/src-tauri/src/core/event_driven_proxy.rs b/src-tauri/src/core/event_driven_proxy.rs index 9357a271..53aa3082 100644 --- a/src-tauri/src/core/event_driven_proxy.rs +++ b/src-tauri/src/core/event_driven_proxy.rs @@ -518,11 +518,7 @@ impl EventDrivenProxyManager { #[cfg(target_os = "windows")] { - logging_error!( - Type::System, - "{}", - Self::execute_sysproxy_command(&["pac", expected_url]) - ); + let _ = Self::execute_sysproxy_command(&["pac", expected_url]); } } @@ -535,11 +531,7 @@ impl EventDrivenProxyManager { #[cfg(target_os = "windows")] { let address = format!("{}:{}", expected.host, expected.port); - logging_error!( - Type::System, - "{}", - Self::execute_sysproxy_command(&["global", &address, &expected.bypass]) - ); + let _ = Self::execute_sysproxy_command(&["global", &address, &expected.bypass]); } }