X-Git-Url: https://mop.ddnsfree.com/gitweb/?a=blobdiff_plain;f=web%2Fbriskin5%2Fstatadm.php;fp=web%2Fbriskin5%2Fstatadm.php;h=bbde8eb144fa5a374179901047f445be7be2ee5d;hb=e469882b494df00aab18f2e38d18c5faa214c740;hp=2ece714bbc4ec032de990bfd37438e735b698276;hpb=15e64d578a2e1901dd829403af8b0eba1a45dbb8;p=brisk.git diff --git a/web/briskin5/statadm.php b/web/briskin5/statadm.php index 2ece714..bbde8eb 100644 --- a/web/briskin5/statadm.php +++ b/web/briskin5/statadm.php @@ -233,7 +233,6 @@ function main_pgsql($curtime) FROM %sbin5_matches as m, %sbin5_games as g WHERE g.mcode = m.code GROUP BY m.code, m.ttok", $G_dbpfx, $G_dbpfx, $G_dbpfx); - // error_log($mtc_sql, 0); if (pg_query($bdb->dbconn->db(), $mtc_sql) == FALSE) { log_crit("statadm: temporary matches table creation [$mtc_sql] failed"); break; @@ -241,7 +240,6 @@ function main_pgsql($curtime) $tmt_sql = sprintf("SELECT * FROM %sbin5_temp_matches WHERE tstamp < to_timestamp(%d)", $G_dbpfx, $curtime - TRI_LIMIT); - // error_log($tmt_sql, 0); // if deletable old matches exists then ... if (($tmt_pg = pg_query($bdb->dbconn->db(), $tmt_sql)) != FALSE) { @@ -262,7 +260,6 @@ function main_pgsql($curtime) $mtc_sql = sprintf("SELECT * from %sbin5_matches WHERE code = %d", $G_dbpfx, $tmt_obj->code); - // error_log($mtc_sql, 0); if (($mtc_pg = pg_query($bdb->dbconn->db(), $mtc_sql)) == FALSE || pg_numrows($mtc_pg) != 1) { log_crit("statadm: matches row select failed"); break;