diff options
author | Till Hoeppner | 2015-04-02 00:19:23 +0200 |
---|---|---|
committer | Till Hoeppner | 2015-04-02 00:19:23 +0200 |
commit | 522ba8bdc2d63c6503324baf3eacdaa0630f4673 (patch) | |
tree | 0935eb5797660cf03445dfca2b3a78f98405a8f4 /src/main.rs | |
parent | a02f3c09482807220c5642b0e03d8f2d8aea243a (diff) | |
download | ilc-522ba8bdc2d63c6503324baf3eacdaa0630f4673.tar.gz ilc-522ba8bdc2d63c6503324baf3eacdaa0630f4673.tar.xz ilc-522ba8bdc2d63c6503324baf3eacdaa0630f4673.zip |
Proper logging, proper parsing
Diffstat (limited to 'src/main.rs')
-rw-r--r-- | src/main.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/main.rs b/src/main.rs index 4bf22f7..be86652 100644 --- a/src/main.rs +++ b/src/main.rs @@ -6,6 +6,7 @@ extern crate docopt; extern crate rustc_serialize; extern crate libc; extern crate regex; +extern crate env_logger; use std::fs::File; use std::io::{ self, BufReader }; @@ -44,6 +45,7 @@ struct Args { } fn main() { + env_logger::init().unwrap(); let args: Args = Docopt::new(USAGE) .and_then(|d| d.decode()) .unwrap_or_else(|e| e.exit()); |