Skip to content

Commit

Permalink
fix(psrlog): Make the logger compatible with the upcoming bump to psr…
Browse files Browse the repository at this point in the history
…/log 3 in server

Signed-off-by: Joas Schilling <coding@schilljs.com>
  • Loading branch information
nickvergessen authored and backportbot[bot] committed Oct 3, 2024
1 parent 28f005f commit 6ac5b3c
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions lib/Support/ConsoleLoggerDecorator.php
Original file line number Diff line number Diff line change
Expand Up @@ -25,49 +25,49 @@ public function __construct(LoggerInterface $inner,
$this->consoleOutput = $consoleOutput;
}

public function emergency($message, array $context = []) {
public function emergency($message, array $context = []): void {
$this->consoleOutput->writeln("<error>[emergency] $message</error>");

$this->inner->emergency($message, $context);
}

public function alert($message, array $context = []) {
public function alert($message, array $context = []): void {
$this->consoleOutput->writeln("<error>[alert] $message</error>");

$this->inner->alert($message, $context);
}

public function critical($message, array $context = []) {
public function critical($message, array $context = []): void {
$this->consoleOutput->writeln("<error>[critical] $message</error>");

$this->inner->critical($message, $context);
}

public function error($message, array $context = []) {
public function error($message, array $context = []): void {
$this->consoleOutput->writeln("<error>[error] $message</error>");

$this->inner->error($message, $context);
}

public function warning($message, array $context = []) {
public function warning($message, array $context = []): void {
$this->consoleOutput->writeln("[warning] $message");

$this->inner->warning($message, $context);
}

public function notice($message, array $context = []) {
public function notice($message, array $context = []): void {
$this->consoleOutput->writeln("<info>[notice] $message</info>");

$this->inner->notice($message, $context);
}

public function info($message, array $context = []) {
public function info($message, array $context = []): void {
$this->consoleOutput->writeln("<info>[info] $message</info>");

$this->inner->info($message, $context);
}

public function debug($message, array $context = []) {
public function debug($message, array $context = []): void {
if ($this->consoleOutput->getVerbosity() < OutputInterface::VERBOSITY_DEBUG) {
return;
}
Expand All @@ -77,7 +77,7 @@ public function debug($message, array $context = []) {
$this->inner->debug($message, $context);
}

public function log($level, $message, array $context = []) {
public function log($level, $message, array $context = []): void {
$this->consoleOutput->writeln("<info>[log] $message</info>");

$this->inner->log($level, $message, $context);
Expand Down

0 comments on commit 6ac5b3c

Please sign in to comment.