From d3d5ddfb434555373b892e127ad9faa6425af3bf Mon Sep 17 00:00:00 2001 From: Mario Date: Sat, 24 Oct 2020 21:26:46 +0000 Subject: enable btlogging to syslog (cherry picked from commit 5580fc1954a63f861644e2de3773fbb3adfa8f2c) --- include/text.php | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'include') diff --git a/include/text.php b/include/text.php index ec397910d..237202283 100644 --- a/include/text.php +++ b/include/text.php @@ -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); } -- cgit v1.2.3