This repository was archived by the owner on May 28, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +0
-3
lines changed
rustc_pattern_analysis/tests/common Expand file tree Collapse file tree 3 files changed +0
-3
lines changed Original file line number Diff line number Diff line change @@ -103,7 +103,6 @@ pub fn init_logger(cfg: LoggerConfig) -> Result<(), Error> {
103
103
104
104
let mut layer = tracing_tree:: HierarchicalLayer :: default ( )
105
105
. with_writer ( io:: stderr)
106
- . with_indent_lines ( true )
107
106
. with_ansi ( color_logs)
108
107
. with_targets ( true )
109
108
. with_verbose_exit ( verbose_entry_exit)
Original file line number Diff line number Diff line change @@ -13,7 +13,6 @@ pub fn init_tracing() {
13
13
use tracing_subscriber:: Layer ;
14
14
let _ = tracing_tree:: HierarchicalLayer :: default ( )
15
15
. with_writer ( std:: io:: stderr)
16
- . with_indent_lines ( true )
17
16
. with_ansi ( true )
18
17
. with_targets ( true )
19
18
. with_indent_amount ( 2 )
Original file line number Diff line number Diff line change @@ -201,7 +201,6 @@ fn init_logging(early_dcx: &EarlyDiagCtxt) {
201
201
let filter = tracing_subscriber:: EnvFilter :: from_env ( "RUSTDOC_LOG" ) ;
202
202
let layer = tracing_tree:: HierarchicalLayer :: default ( )
203
203
. with_writer ( io:: stderr)
204
- . with_indent_lines ( true )
205
204
. with_ansi ( color_logs)
206
205
. with_targets ( true )
207
206
. with_wraparound ( 10 )
You can’t perform that action at this time.
0 commit comments