chore(cargo): replace log dependency with tracing

This commit is contained in:
Michael Aaron Murphy 2024-03-15 14:49:33 +01:00 committed by Jeremy Soller
parent 074d962ae9
commit 32229c16f0
No known key found for this signature in database
GPG key ID: D02FD439211AF56F
10 changed files with 10 additions and 22 deletions

View file

@ -15,7 +15,6 @@ i18n-embed-fl.workspace = true
i18n-embed.workspace = true
itertools = "0.12.1"
libcosmic.workspace = true
log = "0.4"
rust-embed-utils.workspace = true
rust-embed.workspace = true
slotmap = "1.0.7"

View file

@ -2,7 +2,6 @@ use super::{NetworkManagerEvent, NetworkManagerState};
use cosmic::iced::{self, subscription};
use cosmic_dbus_networkmanager::nm::NetworkManager;
use futures::{SinkExt, StreamExt};
use log::error;
use std::fmt::Debug;
use std::hash::Hash;
use zbus::Connection;
@ -39,8 +38,8 @@ async fn start_listening(
};
let network_manager = match NetworkManager::new(&conn).await {
Ok(n) => n,
Err(e) => {
error!("Failed to connect to NetworkManager: {}", e);
Err(why) => {
tracing::error!(why = why.to_string(), "Failed to connect to NetworkManager");
return State::Error;
}
};

View file

@ -2,7 +2,6 @@ use super::{NetworkManagerEvent, NetworkManagerState};
use cosmic::iced::{self, subscription};
use cosmic_dbus_networkmanager::nm::NetworkManager;
use futures::{SinkExt, StreamExt};
use log::error;
use std::fmt::Debug;
use std::hash::Hash;
use zbus::Connection;
@ -41,8 +40,8 @@ async fn start_listening(
};
let network_manager = match NetworkManager::new(&conn).await {
Ok(n) => n,
Err(e) => {
error!("Failed to connect to NetworkManager: {}", e);
Err(why) => {
tracing::error!(why = why.to_string(), "Failed to connect to NetworkManager");
return State::Error;
}
};

View file

@ -2,7 +2,6 @@ use super::{NetworkManagerEvent, NetworkManagerState};
use cosmic::iced::{self, subscription};
use cosmic_dbus_networkmanager::nm::NetworkManager;
use futures::{SinkExt, StreamExt};
use log::error;
use std::fmt::Debug;
use std::hash::Hash;
use zbus::Connection;
@ -40,8 +39,8 @@ async fn start_listening(
let network_manager = match NetworkManager::new(&conn).await {
Ok(n) => n,
Err(e) => {
error!("Failed to connect to NetworkManager: {}", e);
Err(why) => {
tracing::error!(why = why.to_string(), "Failed to connect to NetworkManager");
return State::Error;
}
};