2013-04-16 15:41:31 +00:00
|
|
|
<?php
|
|
|
|
class Logger_SQL {
|
|
|
|
|
2018-09-10 18:49:31 +00:00
|
|
|
private $pdo;
|
|
|
|
|
2013-04-16 15:41:31 +00:00
|
|
|
function log_error($errno, $errstr, $file, $line, $context) {
|
2013-04-17 12:05:52 +00:00
|
|
|
|
2018-09-10 18:49:31 +00:00
|
|
|
// separate PDO connection object is used for logging
|
|
|
|
if (!$this->pdo) $this->pdo = Db::instance()->pdo_connect();
|
|
|
|
|
|
|
|
if ($this->pdo && get_schema_version() > 117) {
|
2017-12-01 22:08:30 +00:00
|
|
|
|
2017-12-01 21:13:28 +00:00
|
|
|
$owner_uid = $_SESSION["uid"] ? $_SESSION["uid"] : null;
|
2013-04-16 15:41:31 +00:00
|
|
|
|
2018-09-10 18:49:31 +00:00
|
|
|
$sth = $this->pdo->prepare("INSERT INTO ttrss_error_log
|
2013-04-16 15:41:31 +00:00
|
|
|
(errno, errstr, filename, lineno, context, owner_uid, created_at) VALUES
|
2017-12-01 21:13:28 +00:00
|
|
|
(?, ?, ?, ?, ?, ?, NOW())");
|
|
|
|
$sth->execute([$errno, $errstr, $file, $line, $context, $owner_uid]);
|
2013-04-16 15:41:31 +00:00
|
|
|
|
2017-12-01 21:13:28 +00:00
|
|
|
return $sth->rowCount();
|
2013-04-16 15:41:31 +00:00
|
|
|
}
|
2013-04-17 12:05:52 +00:00
|
|
|
|
2013-04-16 15:41:31 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2018-09-10 18:49:31 +00:00
|
|
|
}
|