Enable logging for client demo

This commit is contained in:
Stephen Akridge 2018-05-25 10:53:57 -07:00 committed by Greg Fitzgerald
parent ea97529185
commit cb81f80b31
1 changed files with 2 additions and 0 deletions

View File

@ -1,3 +1,4 @@
extern crate env_logger;
extern crate getopts;
extern crate isatty;
extern crate pnet;
@ -49,6 +50,7 @@ fn get_ip_addr() -> Option<IpAddr> {
}
fn main() {
env_logger::init().unwrap();
let mut threads = 4usize;
let mut num_nodes = 1usize;