mirror of
https://gitlab.freedesktop.org/dabrain34/GstPipelineStudio.git
synced 2024-12-19 06:26:31 +00:00
logger: fix clippy complain
This commit is contained in:
parent
c5f9cac444
commit
bed8d6a58e
1 changed files with 1 additions and 1 deletions
|
@ -214,7 +214,7 @@ impl MessageLogger {
|
|||
|
||||
pub fn print_log(&self, log_type: LogType, msg: String) {
|
||||
let to_send = format!("{}\t{}", Local::now().format("%H:%M:%S"), msg);
|
||||
self.sender.send((log_type.clone(), to_send)).unwrap();
|
||||
self.sender.send((log_type, to_send)).unwrap();
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue