Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
add env-logger to error-index-generator
  • Loading branch information
QuietMisdreavus committed Nov 1, 2018
1 parent cd407df commit f36ed5b
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/tools/error_index_generator/main.rs
Expand Up @@ -10,6 +10,7 @@

#![feature(rustc_private)]

extern crate env_logger;
extern crate syntax;
extern crate rustdoc;
extern crate serialize as rustc_serialize;
Expand Down Expand Up @@ -264,6 +265,7 @@ fn parse_args() -> (OutputFormat, PathBuf) {
}

fn main() {
env_logger::init();
PLAYGROUND.with(|slot| {
*slot.borrow_mut() = Some((None, String::from("https://play.rust-lang.org/")));
});
Expand Down

0 comments on commit f36ed5b

Please sign in to comment.