6035e21aec008e44fb64d1a67aebf626f6a1c2cc
galt
  Wed Jan 15 12:51:13 2020 -0800
Suppressing debugging info in jksql.c as QA found it more harmful than helpful. refs#24775

diff --git src/hg/lib/jksql.c src/hg/lib/jksql.c
index ad741c8..fd6ae9b 100644
--- src/hg/lib/jksql.c
+++ src/hg/lib/jksql.c
@@ -1461,32 +1461,33 @@
 
     sc = sc->failoverConn;
     if (sqlConnectIfUnconnected(sc, FALSE))
         mysqlError = mysql_real_query(sc->conn, query, strlen(query));
     else
         // This database does not exist on the (slow-db) failover mysql server
         // It makes more sense to the show the error message we got from our main db
         sc = scMain;
     }
 
 if (mysqlError != 0)
     {
     if (abort)
         {
         monitorLeave();
-	if (sameOk(cfgOption("noSqlInj.dumpStack"), "on"))
-    	    dumpStack("DEBUG Can't start query"); // Extra debugging info. DEBUG REMOVE
+	// Extra debugging info.
+	//if (sameOk(cfgOption("noSqlInj.dumpStack"), "on"))
+    	    //dumpStack("DEBUG Can't start query");
 	sqlAbort(sc, "Can't start query:\n%s\n", query);
         }
     }
 else
     {
     MYSQL_RES *resSet;
     if ((resSet = getter(sc->conn)) == NULL)
 	{
 	if (mysql_errno(sc->conn) != 0)
 	    {
             monitorLeave();
 	    sqlAbort(sc, "Can't use query:\n%s", query);
 	    }
 	}
     else