diff --git a/imag-todo/src/main.rs b/imag-todo/src/main.rs index cde1268d..e373d3f7 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((_, uuid)) => info!("Task {} stored in imag", uuid), + Ok((_, line, uuid)) => info!("{}\nTask {} stored in imag", line, uuid), Err(e) => { trace_error(&e); exit(1);