Skip to content

Commit

Permalink
fixes bazaarvoice#82 - return value
Browse files Browse the repository at this point in the history
  • Loading branch information
DanielSousa committed May 2, 2022
1 parent c9a7d47 commit 7a0ae90
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Logger/Logger.php
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ public function __construct(
public function debug($message, array $context = []): void
{
if ($this->configProvider->isDebugEnabled()) {
return $this->addRecord(static::DEBUG, $message, $context);
$this->addRecord(static::DEBUG, $message, $context);
}
}

Expand Down

0 comments on commit 7a0ae90

Please sign in to comment.