remove error_log debugging

This commit is contained in:
0xRenegade
2022-09-24 00:05:50 -05:00
parent 5e531f4e15
commit f0d43fd18b
-2
View File
@@ -790,11 +790,9 @@ class MysqliDb
*/ */
public function getValue($tableName, $column, $limit = 1) public function getValue($tableName, $column, $limit = 1)
{ {
error_log('1 '.$tableName);
if (strpos($tableName, '.') === false && strpos($tableName, DATABASE_PREFIX) === false) { if (strpos($tableName, '.') === false && strpos($tableName, DATABASE_PREFIX) === false) {
$tableName = DATABASE_PREFIX . $tableName; $tableName = DATABASE_PREFIX . $tableName;
} }
error_log('2 '.$tableName);
$res = $this->ArrayBuilder()->get($tableName, $limit, "{$column} AS retval"); $res = $this->ArrayBuilder()->get($tableName, $limit, "{$column} AS retval");