improve Syslog a little

Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
This commit is contained in:
Arthur Schiwon 2018-04-25 15:33:57 +02:00 committed by Morris Jobke
parent 0e6a317516
commit a21a5bc4ec
No known key found for this signature in database
GPG Key ID: FE03C3A163FEDE68
1 changed files with 6 additions and 3 deletions

View File

@ -30,7 +30,7 @@ use OCP\IConfig;
use OCP\Log\IWriter;
class Syslog implements IWriter {
static protected $levels = [
protected $levels = [
ILogger::DEBUG => LOG_DEBUG,
ILogger::INFO => LOG_INFO,
ILogger::WARN => LOG_WARNING,
@ -40,7 +40,10 @@ class Syslog implements IWriter {
public function __construct(IConfig $config) {
openlog($config->getSystemValue('syslog_tag', 'ownCloud'), LOG_PID | LOG_CONS, LOG_USER);
register_shutdown_function('closelog');
}
public function __destruct() {
closelog();
}
/**
@ -50,7 +53,7 @@ class Syslog implements IWriter {
* @param int $level
*/
public function write(string $app, $message, int $level) {
$syslog_level = self::$levels[$level];
$syslog_level = $this->levels[$level];
syslog($syslog_level, '{'.$app.'} '.$message);
}
}