enable btlogging to syslog

This commit is contained in:
Mario
2020-10-24 21:26:46 +00:00
parent d0e85f05af
commit 5580fc1954
3 changed files with 6 additions and 4 deletions

View File

@@ -106,4 +106,4 @@ class Webfinger {
}
}

View File

@@ -60,4 +60,4 @@ class Zotfinger {
}
}

View File

@@ -723,7 +723,7 @@ function logid() {
* @param int $level A log level
* @param int $priority - compatible with syslog
*/
function btlogger($msg, $level = LOGGER_NORMAL, $priority = LOG_INFO) {
function btlogger($msg, $level = LOGGER_NORMAL, $priority = LOG_INFO, $syslog = false) {
if(! defined('BTLOGGER_DEBUG_FILE'))
define('BTLOGGER_DEBUG_FILE','btlogger.out');
@@ -742,7 +742,9 @@ function btlogger($msg, $level = LOGGER_NORMAL, $priority = LOG_INFO) {
for($x = 1; $x < count($stack); $x ++) {
$s = 'stack: ' . basename($stack[$x]['file']) . ':' . $stack[$x]['line'] . ':' . $stack[$x]['function'] . '()';
logger($s,$level, $priority);
if($syslog) {
hz_syslog(print_r($s,true));
}
if(file_exists(BTLOGGER_DEBUG_FILE) && is_writable(BTLOGGER_DEBUG_FILE)) {
@file_put_contents(BTLOGGER_DEBUG_FILE, $s . PHP_EOL, FILE_APPEND);
}