summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorJoakim Hulthe <joakim@hulthe.net>2024-11-21 17:10:10 +0100
committerJoakim Hulthe <joakim.hulthe@mullvad.net>2024-11-26 13:31:06 +0100
commit4577aea9630bd1693f0657f0e13cec034a96ceae (patch)
tree9aabf8edfb067627c7aa314ad0d882578ffdd460
parent77a26470bcd3e3885bee26a718a2ff053fd38e22 (diff)
downloadmullvadvpn-4577aea9630bd1693f0657f0e13cec034a96ceae.tar.xz
mullvadvpn-4577aea9630bd1693f0657f0e13cec034a96ceae.zip
Fix exception_logging module being included twice
-rw-r--r--mullvad-daemon/src/main.rs4
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)]