ttrss/classes/logger/sql.php

27 lines
636 B
PHP
Raw Normal View History

2013-04-16 17:41:31 +02:00
<?php
class Logger_SQL {
private $pdo;
2013-04-16 17:41:31 +02:00
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) {
2017-12-01 23:08:30 +01:00
2017-12-01 22:13:28 +01:00
$owner_uid = $_SESSION["uid"] ? $_SESSION["uid"] : null;
2013-04-16 17:41:31 +02:00
$sth = $this->pdo->prepare("INSERT INTO ttrss_error_log
2013-04-16 17:41:31 +02:00
(errno, errstr, filename, lineno, context, owner_uid, created_at) VALUES
2017-12-01 22:13:28 +01:00
(?, ?, ?, ?, ?, ?, NOW())");
$sth->execute([$errno, $errstr, $file, $line, $context, $owner_uid]);
2013-04-16 17:41:31 +02:00
2017-12-01 22:13:28 +01:00
return $sth->rowCount();
2013-04-16 17:41:31 +02:00
}
2013-04-16 17:41:31 +02:00
return false;
}
}