Remove .clone() from LogLevel which implements Copy

This commit is contained in:
Anthony Oteri
2023-09-13 21:51:33 -04:00
parent 957b0bb2cc
commit 88de046934
+1 -1
View File
@@ -74,7 +74,7 @@ async fn main() -> Result<(), DredgeError> {
let args = Cli::parse();
// -- Initialize logging
let log_level = args.log_level.clone();
let log_level = args.log_level;
femme::with_level(log::LevelFilter::from(log_level));
// -- Load and parse configuration file