friendship ended with social-app. php is my new best friend
1<?php declare(strict_types = 1);
2
3namespace Contributte\Logging;
4
5use Tracy\ILogger as TracyLogger;
6
7interface ILogger
8{
9
10 public const DEBUG = TracyLogger::DEBUG;
11 public const INFO = TracyLogger::INFO;
12 public const WARNING = TracyLogger::WARNING;
13 public const ERROR = TracyLogger::ERROR;
14 public const EXCEPTION = TracyLogger::EXCEPTION;
15 public const CRITICAL = TracyLogger::CRITICAL;
16
17 /**
18 * @param mixed $message
19 */
20 public function log($message, string $priority = ILogger::INFO): void;
21
22}