Merge pull request #359 from matthiasbeyer/remove-init-logging
Remove init logging
This commit is contained in:
commit
3e29ec0187
6 changed files with 0 additions and 26 deletions
|
@ -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()
|
||||
.subcommand_name()
|
||||
.map_or_else(|| {
|
||||
|
|
|
@ -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()
|
||||
.subcommand_name()
|
||||
.map(|name| {
|
||||
|
|
|
@ -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()
|
||||
.subcommand_name()
|
||||
.map(|name| {
|
||||
|
|
|
@ -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()
|
||||
.subcommand_name()
|
||||
.map_or_else(
|
||||
|
|
|
@ -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
|
||||
rt.cli()
|
||||
.subcommand_name()
|
||||
|
|
|
@ -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
|
||||
|
||||
if rt.cli().is_present("versions") {
|
||||
|
|
Loading…
Reference in a new issue