diff --git a/dblayeroo.php b/dblayeroo.php index 0e81775..3636678 100644 --- a/dblayeroo.php +++ b/dblayeroo.php @@ -685,7 +685,7 @@ class dblayeroo "PDO Engine not supported in dbLayeroo"), 500); } - $this->debugLog ($sql); + $this->debugLog ($sql, 1); return self::$instance[$this->dsn]->exec ($sql); } /* }}} */ @@ -702,7 +702,7 @@ class dblayeroo throw new \Exception (dgettext ("domframework", "No table name defined to drop the table"), 500); $sql = "DROP TABLE $this->sep$this->tableprefix$this->table$this->sep"; - $this->debugLog ($sql); + $this->debugLog ($sql, 1); return self::$instance[$this->dsn]->exec ($sql); } /* }}} */