1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-15 15:53:27 +00:00

Fix Clippy 1.88 warnings (#15396)

* Fix Clippy 1.88 warnings

* Fmt
This commit is contained in:
Daniel García
2025-07-01 22:36:18 +02:00
committed by GitHub
parent 3f7cb674af
commit 616ac9a3c8
6 changed files with 15 additions and 33 deletions

View File

@@ -29,12 +29,12 @@ fn init_logging(log_path: &Path, console_level: LevelFilter, file_level: LevelFi
loggers.push(simplelog::WriteLogger::new(file_level, config, file));
}
Err(e) => {
eprintln!("Can't create file: {}", e);
eprintln!("Can't create file: {e}");
}
}
if let Err(e) = CombinedLogger::init(loggers) {
eprintln!("Failed to initialize logger: {}", e);
eprintln!("Failed to initialize logger: {e}");
}
}