We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6ae1f75 commit d44ec7eCopy full SHA for d44ec7e
src/Mouf/Utils/Log/Psr/MultiLogger.php
@@ -0,0 +1,33 @@
1
+<?php
2
+/*
3
+ * Copyright (c) 2013 David Negrier
4
+ *
5
+ * See the file LICENSE.txt for copying permission.
6
+ */
7
+
8
+namespace Mouf\Utils\Log\Psr;
9
10
+use Psr\Log\LoggerInterface;
11
+use Psr\Log\LogLevel;
12
+use Psr\Log\AbstractLogger;
13
14
+/**
15
+ * A logger class that writes messages into the php error_log.
16
17
+class MultiLogger extends AbstractLogger {
18
19
+ /**
20
+ * Logs with an arbitrary level.
21
22
+ * @param mixed $level
23
+ * @param string $message
24
+ * @param array $context
25
+ * @return null
26
27
+ public function log($level, $message, array $context = array()) {
28
+ //TODO
29
+ }
30
31
+}
32
33
+?>
0 commit comments