Merge pull request #359 from matthiasbeyer/remove-init-logging

Remove init logging
This commit is contained in:
Matthias Beyer 2016-04-17 16:27:37 +02:00
commit 3e29ec0187
6 changed files with 0 additions and 26 deletions

View file

@ -64,10 +64,6 @@ fn main() {
} }
}; };
debug!("Hello. Logging was just enabled");
debug!("I already set up the Runtime object and build the commandline interface parser.");
debug!("Lets get rollin' ...");
rt.cli() rt.cli()
.subcommand_name() .subcommand_name()
.map_or_else(|| { .map_or_else(|| {

View file

@ -58,10 +58,6 @@ fn main() {
} }
}; };
debug!("Hello. Logging was just enabled");
debug!("I already set up the Runtime object and build the commandline interface parser.");
debug!("Lets get rollin' ...");
rt.cli() rt.cli()
.subcommand_name() .subcommand_name()
.map(|name| { .map(|name| {

View file

@ -34,10 +34,6 @@ fn main() {
} }
}; };
debug!("Hello. Logging was just enabled");
debug!("I already set up the Runtime object and build the commandline interface parser.");
debug!("Lets get rollin' ...");
rt.cli() rt.cli()
.subcommand_name() .subcommand_name()
.map(|name| { .map(|name| {

View file

@ -41,10 +41,6 @@ fn main() {
} }
}; };
debug!("Hello. Logging was just enabled");
debug!("I already set up the Runtime object and build the commandline interface parser.");
debug!("Lets get rollin' ...");
rt.cli() rt.cli()
.subcommand_name() .subcommand_name()
.map_or_else( .map_or_else(

View file

@ -37,10 +37,6 @@ fn main() {
} }
}; };
debug!("Hello. Logging was just enabled");
debug!("I already set up the Runtime object and build the commandline interface parser.");
debug!("Lets get rollin' ...");
let id = rt.cli().value_of("id").unwrap(); // enforced by clap let id = rt.cli().value_of("id").unwrap(); // enforced by clap
rt.cli() rt.cli()
.subcommand_name() .subcommand_name()

View file

@ -59,12 +59,6 @@ fn main() {
} }
}; };
debug!("Hello. Logging was just enabled");
debug!("I already set up the Runtime object and build the commandline interface parser.");
debug!("Lets get rollin' ...");
info!("No implementation yet");
let entry_id = rt.cli().value_of("id").unwrap(); // enforced by clap let entry_id = rt.cli().value_of("id").unwrap(); // enforced by clap
if rt.cli().is_present("versions") { if rt.cli().is_present("versions") {