Init env_logger

This commit is contained in:
Michael Vines 2018-07-02 10:54:07 -07:00 committed by Grimes
parent 7ce0b58af8
commit ae29e2085f
1 changed files with 1 additions and 0 deletions

View File

@ -316,6 +316,7 @@ fn request_airdrop(drone_addr: &SocketAddr, id: &Mint, tokens: u64) {
}
fn main() -> Result<(), Box<error::Error>> {
env_logger::init();
let config = parse_args()?;
let mut client = mk_client(&config.leader)?;
process_command(&config, &mut client)