1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889 |
- <?php
- namespace Osinet\ClassGrapher;
- use Psr\Log\LoggerInterface;
- use Psr\Log\LoggerTrait;
- use Psr\Log\LogLevel;
- class Logger implements LoggerInterface {
- use LoggerTrait;
-
- public const Levels = [
- LOG_EMERG => LogLevel::EMERGENCY,
- LOG_ALERT => LogLevel::ALERT,
- LOG_CRIT => LogLevel::CRITICAL,
- LOG_ERR => LogLevel::ERROR,
- LOG_WARNING => LogLevel::WARNING,
- LOG_NOTICE => LogLevel::NOTICE,
- LOG_INFO => LogLevel::INFO,
- LOG_DEBUG => LogLevel::DEBUG,
- ];
- public $fDebugLevel;
- public function __construct($debugLevel = LOG_WARNING) {
- $this->debugLevel($debugLevel);
- }
-
- public function debugLevel($level = NULL) {
- $ret = $this->fDebugLevel;
- if (isset($level)) {
- if ($level < LOG_EMERG) {
- $level = LOG_EMERG;
- }
- if ($level > LOG_DEBUG) {
- $level = LOG_DEBUG;
- }
- $this->fDebugLevel = $level;
- }
- return $ret;
- }
-
- public function legacyLog($message = "\n", $level = LOG_INFO) {
- $psr3Level = static::Levels[$level] ?? LogLevel::ERROR;
- $this->log($psr3Level, $message);
- }
-
- public function log($level, $message, array $context = []) {
- if ($level <= $this->fDebugLevel) {
- fputs(STDERR, $message);
- fflush(STDERR);
- }
- }
- }
|