diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-14 13:23:16 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-14 13:23:16 +0000 |
commit | 3e97c51418e6d27e9a81906f347fcb7c78e27d4f (patch) | |
tree | ee596ce1bc9840661386f96f9b8d1f919a106317 /vendor/gipfl/log/src/DummyLogger.php | |
parent | Initial commit. (diff) | |
download | icingaweb2-module-incubator-3e97c51418e6d27e9a81906f347fcb7c78e27d4f.tar.xz icingaweb2-module-incubator-3e97c51418e6d27e9a81906f347fcb7c78e27d4f.zip |
Adding upstream version 0.20.0.upstream/0.20.0
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'vendor/gipfl/log/src/DummyLogger.php')
-rw-r--r-- | vendor/gipfl/log/src/DummyLogger.php | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/vendor/gipfl/log/src/DummyLogger.php b/vendor/gipfl/log/src/DummyLogger.php new file mode 100644 index 0000000..3e7b0c4 --- /dev/null +++ b/vendor/gipfl/log/src/DummyLogger.php @@ -0,0 +1,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 = []) + { + } +} |