summaryrefslogtreecommitdiffstats
path: root/lib/Utility/PsrLogger.php
diff options
context:
space:
mode:
authorSean Molenaar <sean@seanmolenaar.eu>2019-01-30 20:36:40 +0100
committerSean Molenaar <sean@seanmolenaar.eu>2019-01-30 20:36:40 +0100
commita3246a927de542e1b3ab403359bfd3c08705b6a7 (patch)
tree2062fe74608d41017d4403f2efa388488ca9bdb7 /lib/Utility/PsrLogger.php
parent270409d0d6d4cd9cbae6588c39e3058b22b4734e (diff)
Parser: Switch to feedIO for parsing instead of picoFeed
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);
+ }
+}