From 2b4962f4bcea6fc02e5a98bcb745273011352e28 Mon Sep 17 00:00:00 2001 From: Camelid Date: Mon, 4 Jan 2021 19:28:18 -0800 Subject: [PATCH] Remove old sentence that should have been removed It was mistakenly not removed in #997. --- src/compiler-debugging.md | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/src/compiler-debugging.md b/src/compiler-debugging.md index 918761971..df2d011de 100644 --- a/src/compiler-debugging.md +++ b/src/compiler-debugging.md @@ -182,12 +182,9 @@ If you are developing rustdoc, use `RUSTDOC_LOG` instead. If you are developing Miri, use `MIRI_LOG` instead. You get the idea :) See the [`tracing`] crate's docs, and specifically the docs for [`debug!`] to -see the full syntax you can use. See the [`env_logger`] doc for more info on the -full syntax. (Note: unlike the compiler, the [`tracing`] crate and its examples -use the `RUST_LOG` environment variable. rustc, rustdoc, and other tools set -custom environment variables.) - -[`env_logger`]: https://docs.rs/env_logger +see the full syntax you can use. (Note: unlike the compiler, the [`tracing`] +crate and its examples use the `RUST_LOG` environment variable. rustc, rustdoc, +and other tools set custom environment variables.) **Note that unless you use a very strict filter, the logger will emit a lot of output, so use the most specific module(s) you can (comma-separated if