Skip to content

Commit

Permalink
fix: correct for minimum LoggerLevel
Browse files Browse the repository at this point in the history
  • Loading branch information
tinect authored Aug 15, 2024
1 parent 611c84d commit df2a51a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ public function __construct(

public function collect(HealthCollection $collection): void
{
if (!$this->businessEventHandlerLevel->isHigherThan(Level::Warning)) {
if ($this->businessEventHandlerLevel->isLowerThan(Level::Warning)) {
$collection->add(SettingsResult::warning(
'business_logger',
'BusinessEventHandler logging',
Expand Down

0 comments on commit df2a51a

Please sign in to comment.