[PATCH] Remove debug printf() in read/write_iolog setup
authorJens Axboe <axboe@suse.de>
Tue, 6 Jun 2006 07:25:57 +0000 (09:25 +0200)
committerJens Axboe <axboe@suse.de>
Tue, 6 Jun 2006 07:25:57 +0000 (09:25 +0200)
fio-ini.c

index 44366ccce7fcea322e8a1a73bb82fa2211866e99..05afbf142b71af7f75d93d4b183ad3d53cc9cbb8 100644 (file)
--- a/fio-ini.c
+++ b/fio-ini.c
@@ -894,7 +894,6 @@ int parse_jobs_ini(char *file)
                                continue;
                        }
                        if (!check_str(p, "iolog", str_iolog_cb, td)) {
-                               printf("got read iolog\n");
                                td->read_iolog = 1;
                                td->write_iolog = 0;
                                fgetpos(f, &off);
@@ -902,7 +901,6 @@ int parse_jobs_ini(char *file)
                        }
                        if (!td->read_iolog &&
                            !check_str(p, "write_iolog", str_iolog_cb, td)) {
-                               printf("got write iolog\n");
                                td->write_iolog = 1;
                                fgetpos(f, &off);
                                continue;