From ed042b1d82d7630a517bbb33ae983b278a161a1c Mon Sep 17 00:00:00 2001 From: Quentin Dufour Date: Fri, 10 May 2019 10:39:15 +0200 Subject: [PATCH] Comment too verbose log --- src/evt_core.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/evt_core.c b/src/evt_core.c index 3ab8b78..6cf5e55 100644 --- a/src/evt_core.c +++ b/src/evt_core.c @@ -3,13 +3,13 @@ void free_fdinfo(void* v) { struct evt_core_fdinfo* fdinfo = (struct evt_core_fdinfo*)v; close(fdinfo->fd); // We close the file descriptor here - fprintf(stderr, "Freeing fdinfo for %s\n", fdinfo->url); + //fprintf(stderr, "Freeing fdinfo for %s\n", fdinfo->url); if (fdinfo->free_other != NULL) { - fprintf(stderr, "Freeing fdinfo->other for %s\n", fdinfo->url); + //fprintf(stderr, "Freeing fdinfo->other for %s\n", fdinfo->url); fdinfo->free_other(fdinfo->other); } if (fdinfo->url != NULL) { - fprintf(stderr, "Freeing fdinfo->url for %s\n", fdinfo->url); + //fprintf(stderr, "Freeing fdinfo->url for %s\n", fdinfo->url); free(fdinfo->url); // We free the URL here; } free(v);