From a42ffceb2549b6d7a1dfdb1e5098115e7c9e8f24 Mon Sep 17 00:00:00 2001 From: Paul Masurel Date: Wed, 19 Jul 2017 19:20:42 +0900 Subject: [PATCH] NOBUG Added s to the log message about the overall duratio of indexing --- src/commands/index.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/commands/index.rs b/src/commands/index.rs index a441306..9e81393 100644 --- a/src/commands/index.rs +++ b/src/commands/index.rs @@ -101,7 +101,7 @@ fn run_index(directory: PathBuf, println!("Terminated successfully!"); { let duration = start_overall.to(PreciseTime::now()); - info!("Indexing the documents took {} overall (indexing + merge)", duration.num_seconds()); + info!("Indexing the documents took {} s overall (indexing + merge)", duration.num_seconds()); } Ok(()) }