aboutsummaryrefslogtreecommitdiffstats
path: root/src/bin/geniza-register.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/bin/geniza-register.rs')
-rw-r--r--src/bin/geniza-register.rs3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/bin/geniza-register.rs b/src/bin/geniza-register.rs
index d0f48d8..a328bbc 100644
--- a/src/bin/geniza-register.rs
+++ b/src/bin/geniza-register.rs
@@ -2,6 +2,7 @@
#[macro_use]
extern crate error_chain;
extern crate clap;
+extern crate env_logger;
extern crate geniza;
// TODO: more careful import
@@ -10,6 +11,8 @@ use std::path::Path;
use clap::{App, SubCommand};
fn run() -> Result<()> {
+
+ env_logger::init().unwrap();
let matches = App::new("geniza-register")
.version(env!("CARGO_PKG_VERSION"))