From 0ba1f17601bd740cf95ce474e028ab6d6eb8da13 Mon Sep 17 00:00:00 2001 From: Dominique Fournier Date: Thu, 19 Sep 2019 13:05:35 +0000 Subject: [PATCH] dblayeroo : debugLog must have the priority git-svn-id: https://svn.fournier38.fr/svn/ProgSVN/trunk@5510 bf3deb0d-5f1a-0410-827f-c0cc1f45334c --- dblayeroo.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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); } /* }}} */