-
Notifications
You must be signed in to change notification settings - Fork 10
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Daemon log hook #490
base: main
Are you sure you want to change the base?
Daemon log hook #490
Conversation
@@ -1,4 +1,7 @@ | |||
use crate::network::{log_to_daemon, logger, Daemon, Packet}; | |||
use crate::error::Error; |
Check warning
Code scanning / clippy
unused import: `crate::error::Error`
@@ -1,4 +1,7 @@ | |||
use crate::network::{log_to_daemon, logger, Daemon, Packet}; | |||
use crate::error::Error; | |||
use crate::logger::{Log, Origin}; |
Check warning
Code scanning / clippy
unused import: `Log`
Packet::DaemonLogRequest() => {} | ||
Packet::DaemonLogRequest() => { | ||
let response = Packet::DaemonLogResponse( | ||
inner_daemon_mutex.lock().unwrap().logger.logs.clone(), |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Does this clone all of the logs every time a message is sent?
No description provided.