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