monolog-bundle
monolog-bundle copied to clipboard
Symfony Monolog Bundle
Since the Mailer component has appear in Symfony ecosystem, there is no need for Swift Mailer. But since monolog-bundle can't work with it we need to have one more dependency...
We should try to enforce user's correct configuration as commented [here](https://github.com/symfony/monolog-bundle/blob/master/DependencyInjection/Configuration.php#L27-L322). Why? Because I've found a tricky misconfiguration that leaded to wrong parsing of my logs and in loosing them....
The MongoDBFormatter has sensible values in the constructor so I guess it can be added as a service in this bundle
I have created a custom handler to push logs to AWS Firehose. Here is the constructor: ``` class FirehoseLogHandler extends AbstractProcessingHandler { public function __construct( FirehoseClient $firehoseClient, FormatterInterface $formatter, $streamName,...
The default BrowserConsoleHandler from monolog outputs by registering the send() method as a shutdown handler. https://github.com/Seldaek/monolog/blob/master/src/Monolog/Handler/BrowserConsoleHandler.php#L51 Unfortunately, when you use fpm, HttpFoundation/Response will issue a fastcgi_finish_request() (which immediately returns the...
Hi. The channel for logger not activate, if i use **DefinitionDecorator** instance for create service. As example: ``` xml ``` And after i create a DefinitionDecorator and add **monolog.logger** tag...
Hi, we deploy a docker image in production, this image contains the source code, cache and assets (in short, we run `composer install` in the Dockerfile) the problem is that...
There is no RollbarNotifier now in the latest version so it cannot be used with monolog
Since version `3.2.0` `Seldaek/monolog` added the new `GoogleCloudLoggingFormatter` (see [#1690](https://github.com/Seldaek/monolog/pull/1690)). It would probably make sense to declare it as a service [in this bundle](https://github.com/symfony/monolog-bundle/blob/master/Resources/config/monolog.xml).
Hello, What do you think about providing an option to encrypt emails when using the Symfony MailerHandler? As described here https://symfony.com/doc/current/mailer.html#encrypting-messages It's often very useful to be notified by email...