2018-07-25 Fred Gleason <fredg@paravelsystems.com>

* Removed debugging printfs from 'lib/rdfeedlog.cpp'.
This commit is contained in:
Fred Gleason 2018-07-25 13:45:28 -04:00
parent b7ddea0488
commit 84b21e2007
2 changed files with 2 additions and 2 deletions

View File

@ -17222,3 +17222,5 @@
* Fixed a bug that caused the incorrect character set to be used
when opening a DB connection.
* Added a 'db_charset_test' test harness.
2018-07-25 Fred Gleason <fredg@paravelsystems.com>
* Removed debugging printfs from 'lib/rdfeedlog.cpp'.

View File

@ -76,7 +76,6 @@ void RDIncrementCastCount(QString keyname,unsigned cast_id)
"FEED_KEY_NAME=\""+RDEscapeString(keyname)+"\" && "+
QString().sprintf("(CAST_ID=%u)&&",cast_id)+
"(ACCESS_DATE=\""+RDEscapeString(now.toString("yyyy-MM-dd"))+"\")";
printf("SQL1: %s\n",(const char *)sql);
q=new RDSqlQuery(sql);
if(q->first()) {
sql=QString("update CAST_DOWNLOADS set ")+
@ -92,7 +91,6 @@ void RDIncrementCastCount(QString keyname,unsigned cast_id)
"ACCESS_DATE=\""+RDEscapeString(now.toString("yyyy-MM-dd"))+"\","+
"ACCESS_COUNT=1";
}
printf("SQL2: %s\n",(const char *)sql);
RDSqlQuery::apply(sql);
delete q;
}