Skip to content

Commit

Permalink
Debugging tips for contributors (#2647)
Browse files Browse the repository at this point in the history
  • Loading branch information
gillespiecd committed Oct 8, 2020
1 parent 153320e commit 152ba32
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions CONTRIBUTING.md
Expand Up @@ -31,6 +31,11 @@ cargo build
cargo build --release && cargo run --release
```

- Build and run with extra features:
```shell
cargo build --release --features=extra && cargo run --release --features=extra
```

- Run Clippy on Nushell:

```shell
Expand Down Expand Up @@ -60,3 +65,11 @@ cargo build
```shell
cargo fmt --all
```

### Debugging Tips

- To view verbose logs when developing, enable the `trace` log level.

```shell
cargo build --release --features=extra && cargo run --release --features=extra -- --loglevel trace
```

0 comments on commit 152ba32

Please sign in to comment.