ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
NullLogger.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
23 use ilLogger;
24 use ilLogLevel;
25 use Monolog\Logger;
26 use Exception;
27 
28 class NullLogger extends ilLogger
29 {
30  public function __construct()
31  {
32  }
33 
34  public function isHandling(int $level): bool
35  {
36  return true;
37  }
38 
39  public function log(string $message, int $level = ilLogLevel::INFO, array $context = []): void
40  {
41  }
42 
43  public function dump($value, int $level = ilLogLevel::INFO): void
44  {
45  }
46 
47  public function debug(string $message, array $context = []): void
48  {
49  }
50 
51  public function info(string $message, array $context = []): void
52  {
53  }
54 
55  public function notice(string $message, array $context = []): void
56  {
57  }
58 
59  public function warning(string $message, array $context = []): void
60  {
61  }
62 
63  public function error(string $message, array $context = []): void
64  {
65  }
66 
67  public function critical(string $message, array $context = []): void
68  {
69  }
70 
71  public function alert(string $message, array $context = []): void
72  {
73  }
74 
75  public function emergency(string $message, array $context = []): void
76  {
77  }
78 
80  public function getLogger(): Logger
81  {
82  throw new Exception('Can not return monolog logger from a null logger.');
83  }
84 
85  public function write(string $message, $level = ilLogLevel::INFO, array $context = []): void
86  {
87  }
88 
89  public function writeLanguageLog(string $topic, string $lang_key): void
90  {
91  }
92 
93  public function logStack(?int $level = null, string $message = '', array $context = []): void
94  {
95  }
96 
97  public function writeMemoryPeakUsage(int $level): void
98  {
99  }
100 }
write(string $message, $level=ilLogLevel::INFO, array $context=[])
Definition: NullLogger.php:85
writeLanguageLog(string $topic, string $lang_key)
Definition: NullLogger.php:89
$context
Definition: webdav.php:31
error(string $message, array $context=[])
Definition: NullLogger.php:63
alert(string $message, array $context=[])
Definition: NullLogger.php:71
warning(string $message, array $context=[])
Definition: NullLogger.php:59
emergency(string $message, array $context=[])
Definition: NullLogger.php:75
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
log(string $message, int $level=ilLogLevel::INFO, array $context=[])
Definition: NullLogger.php:39
debug(string $message, array $context=[])
Definition: NullLogger.php:47
notice(string $message, array $context=[])
Definition: NullLogger.php:55
logStack(?int $level=null, string $message='', array $context=[])
Definition: NullLogger.php:93
info(string $message, array $context=[])
Definition: NullLogger.php:51
dump($value, int $level=ilLogLevel::INFO)
Definition: NullLogger.php:43
critical(string $message, array $context=[])
Definition: NullLogger.php:67
$message
Definition: xapiexit.php:31