diff options
| author | Joakim Hulthe <joakim@hulthe.net> | 2024-11-21 17:10:10 +0100 |
|---|---|---|
| committer | Joakim Hulthe <joakim.hulthe@mullvad.net> | 2024-11-26 13:31:06 +0100 |
| commit | 4577aea9630bd1693f0657f0e13cec034a96ceae (patch) | |
| tree | 9aabf8edfb067627c7aa314ad0d882578ffdd460 | |
| parent | 77a26470bcd3e3885bee26a718a2ff053fd38e22 (diff) | |
| download | mullvadvpn-4577aea9630bd1693f0657f0e13cec034a96ceae.tar.xz mullvadvpn-4577aea9630bd1693f0657f0e13cec034a96ceae.zip | |
Fix exception_logging module being included twice
| -rw-r--r-- | mullvad-daemon/src/main.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mullvad-daemon/src/main.rs b/mullvad-daemon/src/main.rs index aee5191366..ddf325167a 100644 --- a/mullvad-daemon/src/main.rs +++ b/mullvad-daemon/src/main.rs @@ -3,14 +3,14 @@ use std::{path::PathBuf, thread, time::Duration}; #[cfg(not(windows))] use mullvad_daemon::cleanup_old_rpc_socket; use mullvad_daemon::{ - logging, rpc_uniqueness_check, runtime, version, Daemon, DaemonCommandChannel, + exception_logging, logging, rpc_uniqueness_check, runtime, version, Daemon, + DaemonCommandChannel, }; use talpid_types::ErrorExt; mod cli; #[cfg(target_os = "linux")] mod early_boot_firewall; -mod exception_logging; #[cfg(target_os = "macos")] mod macos_launch_daemon; #[cfg(windows)] |
