e41ac82366f030f13c148d7dadb62d04255ffcb4
chmalee
  Wed Oct 29 14:39:33 2025 -0700
Remove debugging printfs, refs #36599

diff --git src/hg/cgilib/cartEdit9.c src/hg/cgilib/cartEdit9.c
index dacfc99f645..cb4dbe2d6a2 100644
--- src/hg/cgilib/cartEdit9.c
+++ src/hg/cgilib/cartEdit9.c
@@ -7,26 +7,22 @@
 #include "cart.h"
 
 static char *edit9TracksCcre[] = {
     "encodeCcreCombined",
 };
 
 static char *edit9TracksG2p[] = {
     "ddg2p",
 };
 
 void cartEdit9(struct cart *cart)
 {
 int length = 0;
 
 // turn the encodeCcreCombined track into a child of the new ccres supertrack
-fprintf(stderr, "turning cCREs track on to show\n");
-fflush(stderr);
 length = ArraySize(edit9TracksCcre);
 cartTurnOnSuper(cart, edit9TracksCcre, length, "cCREs");
 
 // Move the ddg2p track from the decipher container to it's own supertrack
-fprintf(stderr, "turning g2pContainer on to show\n");
-fflush(stderr);
 length = ArraySize(edit9TracksG2p);
 cartTurnOnSuper(cart, edit9TracksG2p, length, "g2pContainer");
 }