2012-03-30 21:15:48 +00:00
|
|
|
<?php
|
|
|
|
/**
|
2016-07-21 15:07:57 +00:00
|
|
|
* @copyright Copyright (c) 2016, ownCloud, Inc.
|
|
|
|
*
|
2015-03-26 10:44:34 +00:00
|
|
|
* @author Bart Visscher <bartv@thisnet.nl>
|
|
|
|
* @author Morris Jobke <hey@morrisjobke.de>
|
2016-07-21 15:07:57 +00:00
|
|
|
* @author Roeland Jago Douma <roeland@famdouma.nl>
|
2015-03-26 10:44:34 +00:00
|
|
|
* @author Thomas Müller <thomas.mueller@tmit.eu>
|
|
|
|
*
|
|
|
|
* @license AGPL-3.0
|
|
|
|
*
|
|
|
|
* This code is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License, version 3,
|
|
|
|
* as published by the Free Software Foundation.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Affero General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Affero General Public License, version 3,
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>
|
|
|
|
*
|
2012-03-30 21:15:48 +00:00
|
|
|
*/
|
2015-02-26 10:37:37 +00:00
|
|
|
|
2016-05-02 12:04:58 +00:00
|
|
|
namespace OC\Log;
|
|
|
|
|
2018-04-25 13:22:28 +00:00
|
|
|
use OCP\ILogger;
|
2018-04-24 20:14:00 +00:00
|
|
|
use OCP\IConfig;
|
2018-04-25 00:27:43 +00:00
|
|
|
use OCP\Log\IWriter;
|
2018-04-25 13:22:28 +00:00
|
|
|
|
2018-04-25 00:27:43 +00:00
|
|
|
class Syslog implements IWriter {
|
2018-04-25 13:33:57 +00:00
|
|
|
protected $levels = [
|
2018-04-25 13:22:28 +00:00
|
|
|
ILogger::DEBUG => LOG_DEBUG,
|
|
|
|
ILogger::INFO => LOG_INFO,
|
|
|
|
ILogger::WARN => LOG_WARNING,
|
|
|
|
ILogger::ERROR => LOG_ERR,
|
|
|
|
ILogger::FATAL => LOG_CRIT,
|
2018-04-24 20:14:00 +00:00
|
|
|
];
|
2012-03-30 21:15:48 +00:00
|
|
|
|
2018-04-24 20:14:00 +00:00
|
|
|
public function __construct(IConfig $config) {
|
2018-06-18 18:29:31 +00:00
|
|
|
openlog($config->getSystemValue('syslog_tag', 'Nextcloud'), LOG_PID | LOG_CONS, LOG_USER);
|
2018-04-25 13:33:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public function __destruct() {
|
|
|
|
closelog();
|
2012-03-30 21:15:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* write a message in the log
|
|
|
|
* @param string $app
|
|
|
|
* @param string $message
|
2013-08-04 20:58:40 +00:00
|
|
|
* @param int $level
|
2012-03-30 21:15:48 +00:00
|
|
|
*/
|
2018-04-25 00:27:43 +00:00
|
|
|
public function write(string $app, $message, int $level) {
|
2018-04-25 13:33:57 +00:00
|
|
|
$syslog_level = $this->levels[$level];
|
2015-04-30 10:06:52 +00:00
|
|
|
syslog($syslog_level, '{'.$app.'} '.$message);
|
2012-03-30 21:15:48 +00:00
|
|
|
}
|
|
|
|
}
|