1
0
mirror of https://github.com/Seldaek/monolog.git synced 2025-07-31 18:30:15 +02:00

Rename ThresholdHandler to OverflowHandler

This commit is contained in:
Kris Buist
2018-11-20 20:03:58 +01:00
parent bd79504f1e
commit 7dd453e694
3 changed files with 15 additions and 15 deletions

View File

@@ -125,10 +125,10 @@
has accessors to read out the information.
- [_HandlerWrapper_](../src/Monolog/Handler/HandlerWrapper.php): A simple handler wrapper you can inherit from to create
your own wrappers easily.
- [_ThresholdHandler_](../src/Monolog/Handler/ThresholdHandler.php): This handler will buffer all the log messages it
receives, up until a configured threshold is reached, after it will pass all log messages to the wrapped handler.
Useful for applying in bath processing when you're only interested in significant failures instead of minor, single
erroneous events.
- [_OverflowHandler_](../src/Monolog/Handler/OverflowHandler.php): This handler will buffer all the log messages it
receives, up until a configured threshold of number of messages of a certain lever is reached, after it will pass all
log messages to the wrapped handler. Useful for applying in bath processing when you're only interested in significant
failures instead of minor, single erroneous events.
## Formatters