The Sentry SDK team is happy to announce the immediate availability of Sentry Symfony SDK v5.6.0.
Features
- Remove upper limit for
max_breadcrumbs
option. (#953) - Allow passing string and enum Monolog level. (#959)
services:
Sentry\SentryBundle\Monolog\LogsHandler:
arguments:
- 'info'
# or using PSR constants
services:
Sentry\SentryBundle\Monolog\LogsHandler:
arguments:
- !php/const Psr\Log\LogLevel::INFO
// or via PHP config
$container->services()
->set(\Sentry\SentryBundle\Monolog\LogsHandler::class)
->args([\Monolog\Level::Info]);