Logger.php 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. <?php
  2. declare(strict_types=1);
  3. /**
  4. * This file is part of Hyperf.
  5. *
  6. * @link https://www.hyperf.io
  7. * @document https://hyperf.wiki
  8. * @contact group@hyperf.io
  9. * @license https://github.com/hyperf/hyperf/blob/master/LICENSE
  10. */
  11. namespace Hyperf\Server\Entry;
  12. use Psr\Log\LoggerInterface;
  13. class Logger implements LoggerInterface
  14. {
  15. public function emergency($message, array $context = []): void
  16. {
  17. }
  18. public function alert($message, array $context = []): void
  19. {
  20. }
  21. public function critical($message, array $context = []): void
  22. {
  23. }
  24. public function error($message, array $context = []): void
  25. {
  26. }
  27. public function warning($message, array $context = []): void
  28. {
  29. }
  30. public function notice($message, array $context = []): void
  31. {
  32. }
  33. public function info($message, array $context = []): void
  34. {
  35. }
  36. public function debug($message, array $context = []): void
  37. {
  38. }
  39. public function log($level, $message, array $context = []): void
  40. {
  41. }
  42. }