Skip to content

Commit

Permalink
Change config name to monolog_minimum_level.
Browse files Browse the repository at this point in the history
  • Loading branch information
Jozhef committed Mar 18, 2019
1 parent dcb9ffe commit 6aed6c7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Factories/RollbarHandlerFactory.php
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ public function __construct(ContainerInterface $container)
};
}

$this->minimumLevel = $config['minimum_level'] ?: LogLevel::ERROR;
$this->minimumLevel = isset($config['minimum_level']) ? $config['minimum_level'] : LogLevel::ERROR;

Rollbar::init($config, false, false, false);
}
Expand Down

0 comments on commit 6aed6c7

Please sign in to comment.