diff --git a/app/src/Repository/Venta/EstadoPrecio.php b/app/src/Repository/Venta/EstadoPrecio.php index 879ff05..231e1b4 100644 --- a/app/src/Repository/Venta/EstadoPrecio.php +++ b/app/src/Repository/Venta/EstadoPrecio.php @@ -54,8 +54,6 @@ class EstadoPrecio extends Ideal\Repository public function fetchByPrecio(int $precio_id): array { $query = "SELECT * FROM `{$this->getTable()}` WHERE `precio` = ?"; - error_log($query.PHP_EOL,3,'/logs/query.log'); - error_log($precio_id.PHP_EOL,3,'/logs/query.log'); return $this->fetchMany($query, [$precio_id]); }