summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--mullvad-daemon/src/rpc_uniqueness_check.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/mullvad-daemon/src/rpc_uniqueness_check.rs b/mullvad-daemon/src/rpc_uniqueness_check.rs
index 37bf8a3f60..c73ec0980f 100644
--- a/mullvad-daemon/src/rpc_uniqueness_check.rs
+++ b/mullvad-daemon/src/rpc_uniqueness_check.rs
@@ -15,10 +15,10 @@ pub fn is_another_instance_running() -> bool {
Err(error) => {
let msg =
"Failed to locate/connect to another daemon instance, assuming there isn't one";
- if log_enabled!(Level::Debug) {
- debug!("{}\n{}", msg, error.display_chain());
+ if log_enabled!(Level::Trace) {
+ trace!("{}\n{}", msg, error.display_chain());
} else {
- info!("{}", msg);
+ debug!("{}", msg);
}
false
}