Syslog.php 1.6 KB

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