Syslog.php 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  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. class Syslog {
  27. static protected $levels = array(
  28. \OCP\Util::DEBUG => LOG_DEBUG,
  29. \OCP\Util::INFO => LOG_INFO,
  30. \OCP\Util::WARN => LOG_WARNING,
  31. \OCP\Util::ERROR => LOG_ERR,
  32. \OCP\Util::FATAL => LOG_CRIT,
  33. );
  34. /**
  35. * Init class data
  36. */
  37. public static function init() {
  38. openlog(\OC::$server->getSystemConfig()->getValue("syslog_tag", "ownCloud"), LOG_PID | LOG_CONS, LOG_USER);
  39. // Close at shutdown
  40. register_shutdown_function('closelog');
  41. }
  42. /**
  43. * write a message in the log
  44. * @param string $app
  45. * @param string $message
  46. * @param int $level
  47. */
  48. public static function write($app, $message, $level) {
  49. $syslog_level = self::$levels[$level];
  50. syslog($syslog_level, '{'.$app.'} '.$message);
  51. }
  52. }