abe154b3286cca2b7a54df64f4d041ba19e0b80a
max
  Tue Apr 8 13:27:35 2014 -0700
small changes after code review, refs #13038
diff --git src/hg/lib/hdb.c src/hg/lib/hdb.c
index ff66a38..fb6fe22 100644
--- src/hg/lib/hdb.c
+++ src/hg/lib/hdb.c
@@ -2433,31 +2433,30 @@
 }
 
 char *hDbDbNibPath(char *database)
 /* return nibPath from dbDb for database, has to be freed */
 {
 char* seqDir = NULL;
 bool useNib = cfgOptionBooleanDefault("allowNib", TRUE);
 if (useNib)
     seqDir = hDbDbOptionalField(database, "nibPath");
 else
     {
     char buf[4096];
     safef(buf, sizeof(buf), "/gbdb/%s", database);
     char *twoBitDir = hReplaceGbdbSeqDir(buf, database);
     seqDir = twoBitDir;
-    fprintf(stderr, "twoBitDir %s\n", twoBitDir);
     }
 return seqDir;
 }
 
 char *hGenome(char *database)
 /* Return genome associated with database.
  * use freeMem on this when done. */
 {
 return hDbDbOptionalField(database, "genome");
 }
 
 char *hScientificName(char *database)
 /* Return scientific name for organism represented by this database */
 /* Return NULL if unknown database */
 /* NOTE: must free returned string after use */