Skip to content

Commit 6c05214

Browse files
committed
rustc: Turn logging off by default
1 parent 7920732 commit 6c05214

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/comp/driver/rustc.rs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,9 @@ options:
6161
}
6262

6363
fn main(args: [str]) {
64+
// Don't display log spew by default. Can override with RUST_LOG.
65+
logging::console_off();
66+
6467
let args = args, binary = vec::shift(args);
6568

6669
if vec::len(args) == 0u { usage(binary); ret; }

0 commit comments

Comments
 (0)