Remove debug statement

This commit is contained in:
Ajeet D'Souza 2021-04-04 14:14:09 +05:30
parent 72ec94c962
commit e57049d56a
1 changed files with 0 additions and 2 deletions

View File

@ -21,8 +21,6 @@ pub fn main() {
env::remove_var("RUST_LIB_BACKTRACE"); env::remove_var("RUST_LIB_BACKTRACE");
env::remove_var("RUST_BACKTRACE"); env::remove_var("RUST_BACKTRACE");
eprintln!("{:?}", std::env::args());
if let Err(e) = App::parse().run() { if let Err(e) = App::parse().run() {
match e.downcast::<SilentExit>() { match e.downcast::<SilentExit>() {
Ok(SilentExit { code }) => process::exit(code), Ok(SilentExit { code }) => process::exit(code),