Task #107936 - added.err
back to task #107936download
Error: CLIPPY_WARNING:
crates/lib/src/cli.rs:1571:5: warning: the `dbg!` macro is intended as a debugging tool
# |
# 1571 | dbg!("hi222");
# | ^^^^^^^^^^^^^
# |
# = help: for further information visit https://rust-lang.github.io/rust-clippy/rust-1.94.0/index.html#dbg_macro
# = note: requested on the command line with `-D clippy::dbg-macro`
# help: remove the invocation before committing it to a version control system
# |
# 1571 - dbg!("hi222");
# 1571 + "hi222";
# |