mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-12-22 17:34:54 +01:00
Reduce the verbosity of the progress indicator.
It's fast enough that we can wait for 1000 messages before updating.
This commit is contained in:
parent
a5865d0574
commit
5166406bef
1 changed files with 1 additions and 1 deletions
|
@ -735,7 +735,7 @@ main (int argc, char **argv)
|
||||||
g_free (filename);
|
g_free (filename);
|
||||||
|
|
||||||
count++;
|
count++;
|
||||||
if (count % 250 == 0) {
|
if (count % 1000 == 0) {
|
||||||
gettimeofday (&tv_now, NULL);
|
gettimeofday (&tv_now, NULL);
|
||||||
printf ("Indexed %d messages (%g messages/second)\n",
|
printf ("Indexed %d messages (%g messages/second)\n",
|
||||||
count, count / ((tv_now.tv_sec - tv_start.tv_sec) +
|
count, count / ((tv_now.tv_sec - tv_start.tv_sec) +
|
||||||
|
|
Loading…
Reference in a new issue