]> git.ipfire.org Git - thirdparty/cups.git/commitdiff
Drop stderr logging of global alloc/free.
authorMichael R Sweet <msweet@msweet.org>
Thu, 19 Dec 2024 18:24:00 +0000 (13:24 -0500)
committerMichael R Sweet <msweet@msweet.org>
Thu, 19 Dec 2024 18:24:00 +0000 (13:24 -0500)
cups/globals.c

index 0f379d3b22960620330d59ee39e39dead3cfdcb2..724611bea77d37b4c22ece1caffd32cdef8b488c 100644 (file)
@@ -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);