Skip to content

Commit 97d2c3a

Browse files
committed
remove tracing tree indent lines
1 parent f3ff2f1 commit 97d2c3a

File tree

3 files changed

+0
-3
lines changed

3 files changed

+0
-3
lines changed

compiler/rustc_log/src/lib.rs

-1
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,6 @@ pub fn init_logger(cfg: LoggerConfig) -> Result<(), Error> {
103103

104104
let mut layer = tracing_tree::HierarchicalLayer::default()
105105
.with_writer(io::stderr)
106-
.with_indent_lines(true)
107106
.with_ansi(color_logs)
108107
.with_targets(true)
109108
.with_verbose_exit(verbose_entry_exit)

compiler/rustc_pattern_analysis/tests/common/mod.rs

-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@ pub fn init_tracing() {
1313
use tracing_subscriber::Layer;
1414
let _ = tracing_tree::HierarchicalLayer::default()
1515
.with_writer(std::io::stderr)
16-
.with_indent_lines(true)
1716
.with_ansi(true)
1817
.with_targets(true)
1918
.with_indent_amount(2)

src/librustdoc/lib.rs

-1
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,6 @@ fn init_logging(early_dcx: &EarlyDiagCtxt) {
200200
let filter = tracing_subscriber::EnvFilter::from_env("RUSTDOC_LOG");
201201
let layer = tracing_tree::HierarchicalLayer::default()
202202
.with_writer(io::stderr)
203-
.with_indent_lines(true)
204203
.with_ansi(color_logs)
205204
.with_targets(true)
206205
.with_wraparound(10)

0 commit comments

Comments
 (0)