]> git.tue.mpg.de Git - paraslash.git/commitdiff
aac_afh: Remove noisy debug message.
authorAndre Noll <maan@tuebingen.mpg.de>
Tue, 17 Sep 2024 10:42:58 +0000 (12:42 +0200)
committerAndre Noll <maan@tuebingen.mpg.de>
Tue, 17 Sep 2024 15:48:36 +0000 (17:48 +0200)
This may be printed thousands of times. which is a bit over the top,
even for the debug loglevel.

aac_afh.c

index c4301a2f178257b19d56b3cf297da3e1eaff337c..d50898fc435af7e79d295809fcd9b560b3109651 100644 (file)
--- 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;