From: Andre Date: Sun, 16 Apr 2006 23:22:55 +0000 (+0200) Subject: Kill noisy debug message X-Git-Tag: v0.2.12~83 X-Git-Url: http://git.tuebingen.mpg.de/?p=paraslash.git;a=commitdiff_plain;h=a9d1487ed6ae4a6b2acd9fce91f238ef5d95c56c;hp=6df4ed2fc04c7eeb4474e7d152e4374c219c3aac Kill noisy debug message --- diff --git a/stat.c b/stat.c index 532f9cdf..9def5075 100644 --- a/stat.c +++ b/stat.c @@ -269,7 +269,7 @@ unsigned for_each_line(char *buf, int n, void (*line_handler)(char *)) char *start = buf, *end; int i, num_lines = 0; - PARA_INFO_LOG("buf: %s", buf); +// PARA_INFO_LOG("buf: %s", buf); while (start < buf + n) { char *next_null; char *next_cr; @@ -287,7 +287,7 @@ unsigned for_each_line(char *buf, int n, void (*line_handler)(char *)) num_lines++; if (line_handler) { *end = '\0'; - PARA_INFO_LOG("calling line handler: %s\n", start); +// PARA_INFO_LOG("calling line handler: %s\n", start); line_handler(start); start = ++end; } else