From f915a7fa269e70a87d39db1912b3b5d53b541e7f Mon Sep 17 00:00:00 2001 From: Matthias Beyer Date: Sat, 6 Aug 2016 11:50:50 +0200 Subject: [PATCH] We must actually use println!() here --- imag-todo/src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/imag-todo/src/main.rs b/imag-todo/src/main.rs index dae6a34d..859e7579 100644 --- a/imag-todo/src/main.rs +++ b/imag-todo/src/main.rs @@ -50,7 +50,7 @@ fn tw_hook(rt: &Runtime) { let stdin = stdin.lock(); // implements BufRead which is required for `Task::import()` match Task::import(rt.store(), stdin) { - Ok((_, line, uuid)) => info!("{}\nTask {} stored in imag", line, uuid), + Ok((_, line, uuid)) => println!("{}\nTask {} stored in imag", line, uuid), Err(e) => { trace_error(&e); exit(1);