Skip to content

Commit

Permalink
Merge pull request #10220 from nextcloud/bugfix/noid/future-compatibi…
Browse files Browse the repository at this point in the history
…lity

fix(psrlog): Make the logger compatible with the upcoming bump to psr…
  • Loading branch information
kesselb authored Oct 3, 2024
2 parents 6e33fe2 + 0a22b3f commit 9e52e17
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 9e52e17

Please sign in to comment.