Skip to content

Commit 9ef0e05

Browse files
author
Jozhef
committed
Change config name to monolog_minimum_level.
1 parent dcb9ffe commit 9ef0e05

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

Factories/RollbarHandlerFactory.php

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,9 @@ public function __construct(ContainerInterface $container)
5353
};
5454
}
5555

56-
$this->minimumLevel = $config['minimum_level'] ?: LogLevel::ERROR;
56+
$this->minimumLevel = isset($config['monolog_minimum_level'])
57+
? $config['monolog_minimum_level']
58+
: LogLevel::ERROR;
5759

5860
Rollbar::init($config, false, false, false);
5961
}

0 commit comments

Comments
 (0)