You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tt-rss/classes/logger/sql.php

29 lines
584 B
PHTML

<?php
class Logger_SQL {
function log_error($errno, $errstr, $file, $line, $context) {
7 years ago
$pdo = Db::pdo();
if ($pdo && get_schema_version() > 117) {
try {
$pdo->rollBack();
} catch (Exception $e) {
//
}
7 years ago
$owner_uid = $_SESSION["uid"] ? $_SESSION["uid"] : null;
7 years ago
$sth = $pdo->prepare("INSERT INTO ttrss_error_log
(errno, errstr, filename, lineno, context, owner_uid, created_at) VALUES
7 years ago
(?, ?, ?, ?, ?, ?, NOW())");
$sth->execute([$errno, $errstr, $file, $line, $context, $owner_uid]);
7 years ago
return $sth->rowCount();
}
return false;
}
}