summaryrefslogtreecommitdiffstats
path: root/lib/private/Log/Syslog.php
diff options
context:
space:
mode:
authorRoeland Jago Douma <rullzer@owncloud.com>2016-05-02 14:06:20 +0200
committerRoeland Jago Douma <rullzer@owncloud.com>2016-05-03 08:57:26 +0200
commit03f1a270cc4476f9396f256db1967ee3a18d6e83 (patch)
tree0c91b2121b2d6063d820066c3e9087ebe7767772 /lib/private/Log/Syslog.php
parentfc82047e26274463ec8bd7fdfac15d889292e00a (diff)
downloadnextcloud-server-03f1a270cc4476f9396f256db1967ee3a18d6e83.tar.gz
nextcloud-server-03f1a270cc4476f9396f256db1967ee3a18d6e83.zip
Move \OC\Log to PSR-4
Diffstat (limited to 'lib/private/Log/Syslog.php')
-rw-r--r--lib/private/Log/Syslog.php54
1 files changed, 54 insertions, 0 deletions
diff --git a/lib/private/Log/Syslog.php b/lib/private/Log/Syslog.php
new file mode 100644
index 00000000000..115103f26d6
--- /dev/null
+++ b/lib/private/Log/Syslog.php
@@ -0,0 +1,54 @@
+<?php
+/**
+ * @author Bart Visscher <bartv@thisnet.nl>
+ * @author Morris Jobke <hey@morrisjobke.de>
+ * @author Thomas Müller <thomas.mueller@tmit.eu>
+ *
+ * @copyright Copyright (c) 2016, ownCloud, Inc.
+ * @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/>
+ *
+ */
+
+namespace OC\Log;
+
+class Syslog {
+ static protected $levels = array(
+ \OCP\Util::DEBUG => LOG_DEBUG,
+ \OCP\Util::INFO => LOG_INFO,
+ \OCP\Util::WARN => LOG_WARNING,
+ \OCP\Util::ERROR => LOG_ERR,
+ \OCP\Util::FATAL => LOG_CRIT,
+ );
+
+ /**
+ * Init class data
+ */
+ public static function init() {
+ openlog(\OC::$server->getSystemConfig()->getValue("syslog_tag", "ownCloud"), LOG_PID | LOG_CONS, LOG_USER);
+ // Close at shutdown
+ register_shutdown_function('closelog');
+ }
+
+ /**
+ * write a message in the log
+ * @param string $app
+ * @param string $message
+ * @param int $level
+ */
+ public static function write($app, $message, $level) {
+ $syslog_level = self::$levels[$level];
+ syslog($syslog_level, '{'.$app.'} '.$message);
+ }
+}