From: Andre Noll Date: Tue, 17 Sep 2024 10:42:58 +0000 (+0200) Subject: aac_afh: Remove noisy debug message. X-Git-Url: http://git.tue.mpg.de/?a=commitdiff_plain;h=513faef5d1fc4add033dc1f66b425470b38e16c6;p=paraslash.git aac_afh: Remove noisy debug message. This may be printed thousands of times. which is a bit over the top, even for the debug loglevel. --- diff --git a/aac_afh.c b/aac_afh.c index c4301a2f..d50898fc 100644 --- a/aac_afh.c +++ b/aac_afh.c @@ -35,7 +35,6 @@ static ssize_t aac_afh_read_cb(void *user_data, void *dest, size_t want) return 0; have = c->mapsize - c->fpos; rv = PARA_MIN(have, want); - PARA_DEBUG_LOG("reading %zu bytes @%zu\n", rv, c->fpos); memcpy(dest, c->map + c->fpos, rv); c->fpos += rv; return rv;