Browse Source

NOBUG Added s to the log message about the overall duratio of indexing

develop
Paul Masurel 6 years ago
parent
commit
a42ffceb25
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      src/commands/index.rs

+ 1
- 1
src/commands/index.rs View File

@@ -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(())
}


Loading…
Cancel
Save