mirror of
https://git.tt-rss.org/git/tt-rss.git
synced 2025-12-13 13:45:56 +00:00
Logger_SQL: use separate PDO connection
This commit is contained in:
21
classes/logger/sql.php
Normal file → Executable file
21
classes/logger/sql.php
Normal file → Executable file
@@ -1,21 +1,18 @@
|
||||
<?php
|
||||
class Logger_SQL {
|
||||
|
||||
function log_error($errno, $errstr, $file, $line, $context) {
|
||||
|
||||
$pdo = Db::pdo();
|
||||
|
||||
if ($pdo && get_schema_version() > 117) {
|
||||
private $pdo;
|
||||
|
||||
try {
|
||||
$pdo->rollBack();
|
||||
} catch (Exception $e) {
|
||||
//
|
||||
}
|
||||
function log_error($errno, $errstr, $file, $line, $context) {
|
||||
|
||||
// separate PDO connection object is used for logging
|
||||
if (!$this->pdo) $this->pdo = Db::instance()->pdo_connect();
|
||||
|
||||
if ($this->pdo && get_schema_version() > 117) {
|
||||
|
||||
$owner_uid = $_SESSION["uid"] ? $_SESSION["uid"] : null;
|
||||
|
||||
$sth = $pdo->prepare("INSERT INTO ttrss_error_log
|
||||
$sth = $this->pdo->prepare("INSERT INTO ttrss_error_log
|
||||
(errno, errstr, filename, lineno, context, owner_uid, created_at) VALUES
|
||||
(?, ?, ?, ?, ?, ?, NOW())");
|
||||
$sth->execute([$errno, $errstr, $file, $line, $context, $owner_uid]);
|
||||
@@ -26,4 +23,4 @@ class Logger_SQL {
|
||||
return false;
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user