Index statistics working again
[idzebra-moved-to-github.git] / index / main.c
index 20bfb2b..73a0515 100644 (file)
@@ -2,7 +2,7 @@
  * Copyright (C) 1994-2002, Index Data
  * All rights reserved.
  *
- * $Id: main.c,v 1.87 2002-04-23 18:07:17 adam Exp $
+ * $Id: main.c,v 1.89 2002-04-26 08:44:47 adam Exp $
  */
 #include <stdio.h>
 #include <string.h>
@@ -146,7 +146,7 @@ int main (int argc, char **argv)
                 }
                 else if (!strcmp (arg, "stat") || !strcmp (arg, "status"))
                 {
-                    assert (!"todo");
+                    zebra_register_statistics (zh);
                 }
                 else if (!strcmp (arg, "compact"))
                 {
@@ -232,7 +232,7 @@ int main (int argc, char **argv)
     zebra_stop (zs);
 #if HAVE_SYS_TIMES_H
     times(&tms2);
-    yaz_log (LOG_LOG, "user/system: %ld/%ld",
+    yaz_log (LOG_LOG, "zebraidx user/system: %ld/%ld",
                (long) tms2.tms_utime - tms1.tms_utime,
                (long) tms2.tms_stime - tms1.tms_stime);
 #endif