We must actually use println!() here
This commit is contained in:
parent
71bce41e0f
commit
f915a7fa26
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue