You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
```output
error: unnecessary `Debug` formatting in `format!` args
--> src/console/ci/e2e/runner.rs:140:98
|
140 | let config = std::fs::read_to_string(path).with_context(|| format!("CSan't read config file {path:?}"))?;
| ^^^^
|
= help: use `Display` formatting and change this to `path.display()`
= note: switching to `Display` formatting will change how the value is shown; escaped characters will no longer be escaped and surrounding quotes will be removed
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#unnecessary_debug_formatting
= note: `-D clippy::unnecessary-debug-formatting` implied by `-D clippy::pedantic`
= help: to override `-D clippy::pedantic` add `#[allow(clippy::unnecessary_debug_formatting)]`
error: could not compile `torrust-tracker` (lib) due to 1 previous error
warning: build failed, waiting for other jobs to finish...
error: could not compile `torrust-tracker` (lib test) due to 1 previous error
```
0 commit comments