@@ -37,37 +37,37 @@ public function emergency($message, array $context = []): void
37
37
38
38
public function alert ($ message , array $ context = []): void
39
39
{
40
- $ this ->log (self ::EMERGENCY , $ message , $ context );
40
+ $ this ->log (self ::ALERT , $ message , $ context );
41
41
}
42
42
43
43
public function critical ($ message , array $ context = []): void
44
44
{
45
- $ this ->log (self ::EMERGENCY , $ message , $ context );
45
+ $ this ->log (self ::CRITICAL , $ message , $ context );
46
46
}
47
47
48
48
public function error ($ message , array $ context = []): void
49
49
{
50
- $ this ->log (self ::EMERGENCY , $ message , $ context );
50
+ $ this ->log (self ::ERROR , $ message , $ context );
51
51
}
52
52
53
53
public function warning ($ message , array $ context = []): void
54
54
{
55
- $ this ->log (self ::EMERGENCY , $ message , $ context );
55
+ $ this ->log (self ::WARNING , $ message , $ context );
56
56
}
57
57
58
58
public function notice ($ message , array $ context = []): void
59
59
{
60
- $ this ->log (self ::EMERGENCY , $ message , $ context );
60
+ $ this ->log (self ::NOTICE , $ message , $ context );
61
61
}
62
62
63
63
public function info ($ message , array $ context = []): void
64
64
{
65
- $ this ->log (self ::EMERGENCY , $ message , $ context );
65
+ $ this ->log (self ::INFO , $ message , $ context );
66
66
}
67
67
68
68
public function debug ($ message , array $ context = []): void
69
69
{
70
- $ this ->log (self ::EMERGENCY , $ message , $ context );
70
+ $ this ->log(self ::DEBUG
71
71
}
72
72
73
73
public function log ($ level , $ message , array $ context = []): void
0 commit comments