Skip to content
This repository was archived by the owner on Sep 3, 2025. It is now read-only.

Commit 75ea357

Browse files
committed
fixes
1 parent 6af06fe commit 75ea357

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

src/PDO/PDOStatement.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
namespace Wanwire\RQLite\PDO;
44

55
use CurlHandle;
6-
use Illuminate\Support\Facades\Log;
76
use Illuminate\Support\Str;
87
use PDOException;
98
use PDOStatement as BasePDOStatement;
@@ -156,8 +155,6 @@ private function requestRQLiteByHttp()
156155
curl_setopt($this->connection, CURLOPT_POSTFIELDS, $jsonOptionData);
157156
curl_setopt($this->connection, CURLOPT_URL, $this->buildQueryUrl());
158157

159-
Log::info("SQL: " . $this->buildQueryUrl() . " - " . $this->sql);
160-
161158
$response = curl_exec($this->connection);
162159
$httpCode = curl_getinfo($this->connection, CURLINFO_HTTP_CODE);
163160
if ($response === false || $httpCode !== 200) {

0 commit comments

Comments
 (0)