aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarl Worth <cworth@cworth.org>2009-10-14 17:26:28 -0700
committerCarl Worth <cworth@cworth.org>2009-10-14 17:26:28 -0700
commit5166406befb716d800bb606b510d103dd4272bf9 (patch)
tree1320ed70a6bb363a25d65aab439aabcd56a4ae74
parenta5865d057498f929cf3af5768e3cdac745bb046d (diff)
Reduce the verbosity of the progress indicator.
It's fast enough that we can wait for 1000 messages before updating.
-rw-r--r--notmuch-index-message.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/notmuch-index-message.cc b/notmuch-index-message.cc
index a3483b9..f1f9e3a 100644
--- a/notmuch-index-message.cc
+++ b/notmuch-index-message.cc
@@ -735,7 +735,7 @@ main (int argc, char **argv)
g_free (filename);
count++;
- if (count % 250 == 0) {
+ if (count % 1000 == 0) {
gettimeofday (&tv_now, NULL);
printf ("Indexed %d messages (%g messages/second)\n",
count, count / ((tv_now.tv_sec - tv_start.tv_sec) +