refactor: removes clippy warnings (#601)

This commit is contained in:
Matthias Möller
2025-07-30 12:33:00 +02:00
committed by GitHub
parent f8b69f4df8
commit 459a4d4f4a
6 changed files with 16 additions and 17 deletions

View File

@@ -64,8 +64,8 @@ impl HttpLogger {
}
}
match err {
Some(err) => error!("{} {}", output, err),
None => info!("{}", output),
Some(err) => error!("{output} {err}"),
None => info!("{output}"),
}
}
}