mirror of
https://github.com/nushell/nushell.git
synced 2024-12-22 15:13:01 +01:00
Remove stray commented out lines
This commit is contained in:
parent
5d4097073b
commit
f7590d924e
@ -60,15 +60,16 @@ fn main() -> Result<(), Box<Error>> {
|
|||||||
|
|
||||||
match matches.values_of("develop") {
|
match matches.values_of("develop") {
|
||||||
None => {}
|
None => {}
|
||||||
Some(values) => for item in values {
|
Some(values) => {
|
||||||
|
for item in values {
|
||||||
println!("filtering {:?}", item);
|
println!("filtering {:?}", item);
|
||||||
builder.filter_module(&format!("nu::{}", item), LevelFilter::Trace);
|
builder.filter_module(&format!("nu::{}", item), LevelFilter::Trace);
|
||||||
} //println!("{:?}", values.collect::<Vec<&str>>()),
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
builder.try_init()?;
|
builder.try_init()?;
|
||||||
|
|
||||||
// pretty_env_logger::init();
|
|
||||||
futures::executor::block_on(crate::cli::cli())?;
|
futures::executor::block_on(crate::cli::cli())?;
|
||||||
Ok(())
|
Ok(())
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user