blob: 3e7b0c42279856d69fd2b419eec23a3641038c75 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
<?php
namespace gipfl\Log;
use Psr\Log\LoggerInterface;
class DummyLogger implements LoggerInterface
{
public function emergency($message, array $context = [])
{
}
public function alert($message, array $context = [])
{
}
public function critical($message, array $context = [])
{
}
public function error($message, array $context = [])
{
}
public function warning($message, array $context = [])
{
}
public function notice($message, array $context = [])
{
}
public function info($message, array $context = [])
{
}
public function debug($message, array $context = [])
{
}
public function log($level, $message, array $context = [])
{
}
}
|