cargo clippy

This commit is contained in:
2025-12-12 22:54:00 +00:00
committed by futile
parent f1f71e7533
commit 749bf9a7a7
3 changed files with 16 additions and 16 deletions
+2 -2
View File
@@ -42,9 +42,9 @@ impl Logger {
fn log_to_file(&self, record: &log::Record) {
let mut file = self.file.lock().unwrap();
write!(
writeln!(
file,
"[{}][{}] {}\n",
"[{}][{}] {}",
humantime::format_rfc3339_seconds(SystemTime::now()),
record.level(),
record.args()