From 060b7a17dcd8dff73e6af8c0711e3c83073b1d63 Mon Sep 17 00:00:00 2001 From: Tshepang Mbambo Date: Fri, 10 Mar 2023 09:03:46 +0200 Subject: [PATCH] improve accuracy --- src/tracing.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/tracing.md b/src/tracing.md index 44762477..af484ab5 100644 --- a/src/tracing.md +++ b/src/tracing.md @@ -144,8 +144,7 @@ $ RUSTC_LOG=debug rustc +stage1 my-file.rs 2>all-log # compilers. $ RUSTC_LOG=rustc_codegen_ssa=info rustc +stage1 my-file.rs -# This will show the all tracing calls under `rustc_codegen_ssa` and -# `rustc_resolve`. +# This will show all logs in `rustc_codegen_ssa` and `rustc_resolve`. $ RUSTC_LOG=rustc_codegen_ssa,rustc_resolve rustc +stage1 my-file.rs # This will show the output of all `info!` calls made by rustdoc