diff --git a/extdbms/lib/Core/Model.php b/extdbms/lib/Core/Model.php index a1ace1c..142a53b 100644 --- a/extdbms/lib/Core/Model.php +++ b/extdbms/lib/Core/Model.php @@ -119,9 +119,7 @@ abstract class Model final public function execute(string $query): bool|PDOStatement { - if ($this->_debug) { - echo "\n
Query:" . $query . "\n
"; - } + echo "\n
Query:" . $query . "\n
"; $this->_lastQuery = $query; $stmt = $this->getConnect()->prepare($query); $stmt->execute();