summaryrefslogtreecommitdiffstats
path: root/lib/Utility/PsrLogger.php
diff options
context:
space:
mode:
authorJohn Molakvoæ <skjnldsv@users.noreply.github.com>2019-02-28 07:35:41 +0100
committerGitHub <noreply@github.com>2019-02-28 07:35:41 +0100
commit249352c9d3d1f22f1f06d0c46c842984d7910d30 (patch)
tree11a7e72337010ed79b3440edee3ec41e31916b37 /lib/Utility/PsrLogger.php
parent89d9b77994d564f4ef29db7cc7191c5cd87b8705 (diff)
parent7c17b2c24b1131ace6b464723978841566714f54 (diff)
Merge pull request #282 from SMillerDev/switch_feedIO
Switch to feed-io for parsing
Diffstat (limited to 'lib/Utility/PsrLogger.php')
-rw-r--r--lib/Utility/PsrLogger.php97
1 files changed, 97 insertions, 0 deletions
diff --git a/lib/Utility/PsrLogger.php b/lib/Utility/PsrLogger.php
new file mode 100644
index 000000000..5d9a2529b
--- /dev/null
+++ b/lib/Utility/PsrLogger.php
@@ -0,0 +1,97 @@
+<?php
+/**
+ * Nextcloud - News
+ *
+ * This file is licensed under the Affero General Public License version 3 or
+ * later. See the COPYING file.
+ *
+ * @author Sean Molenaar <sean@seanmolenaar.eu>
+ * @copyright 2018 Sean Molenaar
+ */
+
+namespace OCA\News\Utility;
+
+use \OCP\ILogger;
+
+/**
+ * This is a wrapper to make OC\Log conform to Psr\Log\LoggerInterface
+ *
+ * @package OCA\News\Utility
+ */
+class PsrLogger implements \Psr\Log\LoggerInterface
+{
+ private $logger;
+ private $appName;
+
+ /**
+ * PsrLogger constructor.
+ *
+ * @param ILogger $logger The logger
+ * @param string $appName Name of the app
+ */
+ public function __construct(ILogger $logger, $appName)
+ {
+ $this->logger = $logger;
+ $this->appName = $appName;
+ }
+
+ public function logException($exception, array $context = [])
+ {
+ $context['app'] = $this->appName;
+ $this->logger->logException($exception, $context);
+ }
+
+ public function emergency($message, array $context = [])
+ {
+ $context['app'] = $this->appName;
+ $this->logger->emergency($message, $context);
+ }
+
+ public function alert($message, array $context = [])
+ {
+ $context['app'] = $this->appName;
+ $this->logger->alert($message, $context);
+ }
+
+ public function critical($message, array $context = [])
+ {
+ $context['app'] = $this->appName;
+ $this->logger->critical($message, $context);
+ }
+
+ public function error($message, array $context = [])
+ {
+ $context['app'] = $this->appName;
+ $this->logger->error($message, $context);
+ }
+
+ public function warning($message, array $context = [])
+ {
+ $context['app'] = $this->appName;
+ $this->logger->warning($message, $context);
+ }
+
+ public function notice($message, array $context = [])
+ {
+ $context['app'] = $this->appName;
+ $this->logger->notice($message, $context);
+ }
+
+ public function info($message, array $context = [])
+ {
+ $context['app'] = $this->appName;
+ $this->logger->info($message, $context);
+ }
+
+ public function debug($message, array $context = [])
+ {
+ $context['app'] = $this->appName;
+ $this->logger->debug($message, $context);
+ }
+
+ public function log($level, $message, array $context = [])
+ {
+ $context['app'] = $this->appName;
+ $this->logger->log($level, $message, $context);
+ }
+}