diff options
| -rw-r--r-- | mullvad-daemon/src/lib.rs | 1 | ||||
| -rw-r--r-- | mullvad-daemon/src/main.rs | 3 |
2 files changed, 2 insertions, 2 deletions
diff --git a/mullvad-daemon/src/lib.rs b/mullvad-daemon/src/lib.rs index aab7f406f7..bf4c854c94 100644 --- a/mullvad-daemon/src/lib.rs +++ b/mullvad-daemon/src/lib.rs @@ -14,6 +14,7 @@ extern crate serde; mod account_history; mod geoip; +pub mod logging; mod management_interface; mod relays; mod rpc_uniqueness_check; diff --git a/mullvad-daemon/src/main.rs b/mullvad-daemon/src/main.rs index e9346405d9..c6b2e35f6b 100644 --- a/mullvad-daemon/src/main.rs +++ b/mullvad-daemon/src/main.rs @@ -9,12 +9,11 @@ #![deny(rust_2018_idioms)] use log::{debug, error, info, warn}; -use mullvad_daemon::Daemon; +use mullvad_daemon::{logging, Daemon}; use std::{path::PathBuf, thread, time::Duration}; use talpid_types::ErrorExt; mod cli; -mod logging; mod shutdown; #[cfg(windows)] mod system_service; |
