From e36c0a5707de78faa039194d4f3f56764e2ccbfa Mon Sep 17 00:00:00 2001 From: Michael R Sweet Date: Thu, 19 Dec 2024 13:24:00 -0500 Subject: [PATCH] Drop stderr logging of global alloc/free. --- cups/globals.c | 6 ------ 1 file changed, 6 deletions(-) diff --git a/cups/globals.c b/cups/globals.c index 0f379d3b2..724611bea 100644 --- a/cups/globals.c +++ b/cups/globals.c @@ -197,8 +197,6 @@ cups_globals_alloc(void) */ cg->thread_id = ++ cups_global_index; - - fprintf(stderr, "T%d cups_globals_alloc\n", cg->thread_id); #endif /* DEBUG */ /* @@ -412,10 +410,6 @@ cups_globals_free(_cups_globals_t *cg) /* I - Pointer to global data */ *next; /* Next buffer */ -#ifdef DEBUG - fprintf(stderr, "T%d cups_globals_free\n", cg->thread_id); -#endif // DEBUG - if (cg->last_status_message) _cupsStrFree(cg->last_status_message);