zipf: kill debug "generating series" messages
[fio.git] / lib / zipf.c
index c348c9c3fd5cbac2eb2985092157a4e29dd72902..41e20554b3d019885ed76c9fbe9b66183c4100cf 100644 (file)
@@ -18,12 +18,10 @@ static void zipf_update(struct zipf_state *zs)
        unsigned long to_gen;
        unsigned int i;
 
-       log_info("fio: generating zetan for theta=%f, ranges=%lu\n", zs->theta, zs->nranges);
-
        /*
         * It can become very costly to generate long sequences. Just cap it at
-        * 10M max, that should be doable in 1-2s on even slow machines. Precision
-        * will take a slight hit, but nothing major.
+        * 10M max, that should be doable in 1-2s on even slow machines.
+        * Precision will take a slight hit, but nothing major.
         */
        to_gen = min(zs->nranges, ZIPF_MAX_GEN);