monolog icon indicating copy to clipboard operation
monolog copied to clipboard

Sends your logs to files, sockets, inboxes, databases and various web services

Results 103 monolog issues
Sort by recently updated
recently updated
newest added

`save-state` and `set-output` commands used in GitHub Actions are deprecated and [GitHub recommends using environment files](https://github.blog/changelog/2023-07-24-github-actions-update-on-save-state-and-set-output-commands/). This PR updates the usage of `set-output` to `$GITHUB_OUTPUT` Instructions for envvar usage from...

This is just an idea how to make the GelfMessageFormatter and AmqpHandler compatible (again).

HI @Seldaek This is an improvement of https://github.com/Seldaek/monolog/issues/673 When a __toString method call throws an exception (which should occurs as few as possible), the Normalizer is throwing an exception too....

Monolog version 3 ```php PHP Warning: Invalid callback Monolog\Handler\RotatingFileHandler::customErrorHandler, cannot access private method Monolog\Handler\RotatingFileHandler::customErrorHandler() ```

Bug

Many times, I encountered use cases around custom normalization. ```php NormalizerFormatter::normalize / is_object($data) ``` To name a few: - Normalize a custom exception to include extra fields into the context...

Feature

:wave: I was wondering if [Elastic Common Schema](https://www.elastic.co/guide/en/ecs/8.4/ecs-reference.html#_what_is_ecs) will be supported in the future. For example, in the ECS, the host field [should be an object](https://www.elastic.co/guide/en/ecs/8.4/ecs-host.html) but is set as...

Feature
Needs Work

Monolog version 2.5 I don't see any docs on how to use `includeStacktraces`. Do I add the `exception` to the log context and it logs the stacktrace there? I'm using...

Support

BufferHandler overrides the parent destructor, but it's possible for close() to be called from a destructor anyway, late during request shutdown, if the BufferHandler is put in a GroupHandler. So,...

Bug

Most (if not all) other classes in the project are not marked as final. Although it's possible to extend the functionality of this class by using composition, it goes against...

Monolog version 1|2|3? 2 or 3 **Intro** Let's say we have tests where some code is executed outside of the tests context, e.g.: - API testing where there is a...

Support