aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2019-07-12 00:16:41 -0400
committerJesse Luehrs <doy@tozt.net>2019-07-12 00:16:41 -0400
commitdddc1a724a2f13676688e45315f3f6360d1e6113 (patch)
tree61f17b465038e09cb281168bc4e414ecafe9dac7
parent6600f64e6eedc02f81e22b627c77b43594cdc144 (diff)
downloadnbsh-old-dddc1a724a2f13676688e45315f3f6360d1e6113.tar.gz
nbsh-old-dddc1a724a2f13676688e45315f3f6360d1e6113.zip
remove debugging
-rw-r--r--src/tui.rs2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/tui.rs b/src/tui.rs
index 8b1b721..c6446b6 100644
--- a/src/tui.rs
+++ b/src/tui.rs
@@ -97,7 +97,6 @@ impl Tui {
.context(InvalidCommandIndex { idx })?;
let cmd = cmd.to_string();
let args = args.to_vec();
- eprint!("running '{} {:?}'\r\n", cmd, args);
command.cmd = Some(cmd);
command.args = Some(args);
Ok(())
@@ -128,7 +127,6 @@ impl Tui {
.get_mut(&idx)
.context(InvalidCommandIndex { idx })?;
command.status = Some(status);
- eprint!("command exited: {}\r\n", status);
Ok(())
}