1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-13 01:25:56 +00:00

Logger_SQL: use separate PDO connection

This commit is contained in:
Andrew Dolgov
2018-09-10 21:49:31 +03:00
parent 80fd79ca30
commit bb84330234
2 changed files with 30 additions and 22 deletions

21
classes/logger/sql.php Normal file → Executable file
View 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;
}
}
}