ttrss/classes/logger/sql.php

29 lines
584 B
PHP
Raw Normal View History

2013-04-16 15:41:31 +00:00
<?php
class Logger_SQL {
function log_error($errno, $errstr, $file, $line, $context) {
2017-12-01 21:13:28 +00:00
$pdo = Db::pdo();
if ($pdo && get_schema_version() > 117) {
2017-12-01 22:08:30 +00:00
try {
$pdo->rollBack();
} catch (Exception $e) {
//
}
2017-12-01 21:13:28 +00:00
$owner_uid = $_SESSION["uid"] ? $_SESSION["uid"] : null;
2013-04-16 15:41:31 +00:00
2017-12-01 21:13:28 +00:00
$sth = $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-16 15:41:31 +00:00
return false;
}
2017-04-26 17:24:18 +00:00
}