57e99ec5381cc522b025ff1259bd27059cc8c19a
hiram
  Tue Aug 25 07:45:19 2020 -0700
remove debug print statement refs #24396

diff --git src/hg/lib/customFactory.c src/hg/lib/customFactory.c
index fc95602..c89baae 100644
--- src/hg/lib/customFactory.c
+++ src/hg/lib/customFactory.c
@@ -80,31 +80,30 @@
 char *line = customPpNextReal(cpp);
 if (line != NULL && startsWithWord("track", line))
     {
     customPpReuse(cpp, line);
     line = NULL;
     }
 return line;
 }
 
 static char *customFactoryCheckChromNameAliasDb(char *genomeDb, char *word, struct lineFile *lf)
 /* Abort if word is not a valid sequence name for genomeDb.  If word is a recognizable alias
  * or case-sensitive variant of a valid sequence, suggest that to the user. */
 {
 static char *aliasName = NULL;
 aliasName = hgOfficialChromName(genomeDb, word);
-verbose(1,"# DBG: alias name check '%s' returned '%s'\n", word, aliasName);
 if (! aliasName)
     lineFileAbort(lf, "'%s' is not a valid sequence name in %s", word, genomeDb);
 return aliasName;
 }
 
 void customFactoryCheckChromNameDb(char *genomeDb, char *word, struct lineFile *lf)
 /* Abort if word is not a valid sequence name for genomeDb.  If word is a recognizable alias
  * or case-sensitive variant of a valid sequence, suggest that to the user. */
 {
 char *officialChrom = hgOfficialChromName(genomeDb, word);
 if (! officialChrom)
     lineFileAbort(lf, "'%s' is not a valid sequence name in %s", word, genomeDb);
 else if (differentString(word, officialChrom))
     lineFileAbort(lf, "'%s' is not a valid sequence name in %s (perhaps you mean '%s'?)",
                   word, genomeDb, officialChrom);