This is rough tool
A tool to add, remove and check for
tracing::instrument
in large projects where it is infeasible to manually add it to thousands of functions.
cargo install clippy-tracing
This is tested in the readme()
integration test.
```rust fn main() { println!("Hello World!"); } fn add(lhs: i32, rhs: i32) -> i32 { lhs + rhs }
mod tests { fn sub(lhs: i32, rhs: i32) -> i32 { lhs - rhs } #[test] fn testone() { asserteq!(add(1,1), sub(2, 1)); } } ```
bash
clippy-tracing --action check # Missing instrumentation at {path}:9:4.\n
echo $? # 2
clippy-tracing --action fix
echo $? # 0
```rust
fn main() { println!("Hello World!"); }
fn add(lhs: i32, rhs: i32) -> i32 { lhs + rhs }
mod tests { #[tracing::instrument(level = "trace", skip(lhs, rhs))] fn sub(lhs: i32, rhs: i32) -> i32 { lhs - rhs } #[test] fn testone() { asserteq!(add(1,1), sub(2, 1)); } } ```
bash
clippy-tracing --action check
echo $? # 0
clippy-tracing --action strip
echo $? # 0
```rust fn main() { println!("Hello World!"); } fn add(lhs: i32, rhs: i32) -> i32 { lhs + rhs }
mod tests { fn sub(lhs: i32, rhs: i32) -> i32 { lhs - rhs } #[test] fn testone() { asserteq!(add(1,1), sub(2, 1)); } } ```
log
Supports log_instrument
when compiled with the log
feature.