We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cd407df commit f36ed5bCopy full SHA for f36ed5b
src/tools/error_index_generator/main.rs
@@ -10,6 +10,7 @@
10
11
#![feature(rustc_private)]
12
13
+extern crate env_logger;
14
extern crate syntax;
15
extern crate rustdoc;
16
extern crate serialize as rustc_serialize;
@@ -264,6 +265,7 @@ fn parse_args() -> (OutputFormat, PathBuf) {
264
265
}
266
267
fn main() {
268
+ env_logger::init();
269
PLAYGROUND.with(|slot| {
270
*slot.borrow_mut() = Some((None, String::from("https://play.rust-lang.org/")));
271
});
0 commit comments