Skip to content

Commit

Permalink
Drop stderr logging of global alloc/free.
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelrsweet committed Dec 19, 2024
1 parent 61c0c8e commit e36c0a5
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions cups/globals.c
Original file line number Diff line number Diff line change
Expand Up @@ -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 */

/*
Expand Down Expand Up @@ -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);

Expand Down

0 comments on commit e36c0a5

Please sign in to comment.