mirror of
https://github.com/Seldaek/monolog.git
synced 2025-08-06 21:26:43 +02:00
ADd RedisPubSubHandler to docs, refs #1503
This commit is contained in:
@@ -76,7 +76,8 @@
|
|||||||
|
|
||||||
### Log to databases
|
### Log to databases
|
||||||
|
|
||||||
- [_RedisHandler_](../src/Monolog/Handler/RedisHandler.php): Logs records to a [redis](http://redis.io) server.
|
- [_RedisHandler_](../src/Monolog/Handler/RedisHandler.php): Logs records to a [redis](http://redis.io) server's key via RPUSH.
|
||||||
|
- [_RedisPubSubHandler_](../src/Monolog/Handler/RedisPubSubHandler.php): Logs records to a [redis](http://redis.io) server's channel via PUBLISH.
|
||||||
- [_MongoDBHandler_](../src/Monolog/Handler/MongoDBHandler.php): Handler to write records in MongoDB via a
|
- [_MongoDBHandler_](../src/Monolog/Handler/MongoDBHandler.php): Handler to write records in MongoDB via a
|
||||||
[Mongo](http://pecl.php.net/package/mongo) extension connection.
|
[Mongo](http://pecl.php.net/package/mongo) extension connection.
|
||||||
- [_CouchDBHandler_](../src/Monolog/Handler/CouchDBHandler.php): Logs records to a CouchDB server.
|
- [_CouchDBHandler_](../src/Monolog/Handler/CouchDBHandler.php): Logs records to a CouchDB server.
|
||||||
@@ -110,8 +111,8 @@
|
|||||||
application to crash and may wish to continue to log to other handlers.
|
application to crash and may wish to continue to log to other handlers.
|
||||||
- [_FallbackGroupHandler_](../src/Monolog/Handler/FallbackGroupHandler.php): This handler extends the _GroupHandler_ ignoring
|
- [_FallbackGroupHandler_](../src/Monolog/Handler/FallbackGroupHandler.php): This handler extends the _GroupHandler_ ignoring
|
||||||
exceptions raised by each child handler, until one has handled without throwing.
|
exceptions raised by each child handler, until one has handled without throwing.
|
||||||
This allows you to ignore issues where a remote tcp connection may have died
|
This allows you to ignore issues where a remote tcp connection may have died
|
||||||
but you do not want your entire application to crash and may wish to continue
|
but you do not want your entire application to crash and may wish to continue
|
||||||
to attempt log to other handlers, until one does not throw.
|
to attempt log to other handlers, until one does not throw.
|
||||||
- [_BufferHandler_](../src/Monolog/Handler/BufferHandler.php): This handler will buffer all the log records it receives
|
- [_BufferHandler_](../src/Monolog/Handler/BufferHandler.php): This handler will buffer all the log records it receives
|
||||||
until `close()` is called at which point it will call `handleBatch()` on the
|
until `close()` is called at which point it will call `handleBatch()` on the
|
||||||
|
Reference in New Issue
Block a user