Upgrade to tracing 0.2.13

The primary motivation is to get the changes from
https://github.com/tokio-rs/tracing/pull/990. Example output:

```
$ RUSTDOC_LOG=debug rustdoc +rustc2
warning: some trace filter directives would enable traces that are disabled statically
 | `debug` would enable the DEBUG level for all targets
 = note: the static max level is `info`
 = help: to enable DEBUG logging, remove the `max_level_info` feature
```

- Remove useless test

  This was testing for an ICE when passing `RUST_LOG=rustc_middle`.  I
  noticed it because it started giving the tracing warning (because tests
  are not run with debug-logging enabled). Since this bug seems unlikely
  to re-occur, I just removed it altogether.
This commit is contained in:
Joshua Nelson 2020-10-07 18:45:59 -04:00
parent 4437b4b150
commit 8b22d079bf
3 changed files with 6 additions and 12 deletions

View file

@ -1,7 +0,0 @@
// run-pass
// rustc-env:RUSTC_LOG=rustc::middle=debug
fn main() {
let b = 1isize;
println!("{}", b);
}