diff --git a/dblayeroo.php b/dblayeroo.php index 2d719de..3b6fbe9 100644 --- a/dblayeroo.php +++ b/dblayeroo.php @@ -2544,7 +2544,7 @@ class dblayeroo $tmpValues[$key] = $val; $tmpType[md5 ("$key, $val")] = $this->fieldTypeLight ($key); $this->debugLog ("setValues : Type for $key = ". - $this->fieldTypeLight ($key)); + $this->fieldTypeLight ($key), 1); } $this->setValues = $tmpValues; $this->setType = $tmpType; @@ -3247,7 +3247,7 @@ class dblayeroo $sql = $this->createRequest (); $this->debugLog ("Entering prepareRequest (XXX, ",false,")", 2); $st = $this->prepareRequest ($sql, false); - $this->debugLog ("'", $this->getDisplayQuery (), "'"); + $this->debugLog ("'", $this->getDisplayQuery (), "'", 1); $startTime = microtime (true); $st->execute (); switch ($this->command) @@ -3402,7 +3402,7 @@ class dblayeroo $autoInc = $this->table."_${col}_seq"; } $this->debugLog ("INSERT: lastInsertId=", - self::$instance[$this->dsn]->lastInsertId ($autoInc)); + self::$instance[$this->dsn]->lastInsertId ($autoInc), 1); return self::$instance[$this->dsn]->lastInsertId ($autoInc); case "UPDATE": case "DELETE":