1
0
mirror of https://tt-rss.org/git/tt-rss.git synced 2024-07-01 12:40:50 +02:00
ttrss/classes/logger/sql.php

29 lines
833 B
PHP
Raw Normal View History

2013-04-16 17:41:31 +02:00
<?php
class Logger_SQL {
function log_error($errno, $errstr, $file, $line, $context) {
if (Db::get() && get_schema_version() > 117) {
$errno = Db::get()->escape_string($errno);
$errstr = Db::get()->escape_string($errstr);
$file = Db::get()->escape_string($file);
$line = Db::get()->escape_string($line);
2013-04-16 18:16:15 +02:00
$context = ''; // backtrace is a lot of data which is not really critical to store
2013-04-17 18:12:14 +02:00
//$context = $this->dbh->escape_string(serialize($context));
2013-04-16 17:41:31 +02:00
$owner_uid = $_SESSION["uid"] ? $_SESSION["uid"] : "NULL";
$result = Db::get()->query(
2013-04-16 17:41:31 +02:00
"INSERT INTO ttrss_error_log
(errno, errstr, filename, lineno, context, owner_uid, created_at) VALUES
($errno, '$errstr', '$file', '$line', '$context', $owner_uid, NOW())");
return Db::get()->affected_rows($result) != 0;
2013-04-16 17:41:31 +02:00
}
2013-04-16 17:41:31 +02:00
return false;
}
}
?>