1
0
mirror of https://github.com/Seldaek/monolog.git synced 2025-02-24 15:02:28 +01:00

Update README/CHANGELOG

This commit is contained in:
Jordi Boggiano 2012-04-22 17:41:03 +02:00
parent 56d246cca3
commit 4b2c47d5b6
2 changed files with 3 additions and 0 deletions

View File

@ -6,6 +6,7 @@
handle the given log level handle the given log level
* Added ChromePHPHandler * Added ChromePHPHandler
* Added MongoDBHandler * Added MongoDBHandler
* Added GelfHandler (for use with Graylog2 servers)
* Added SocketHandler (for use with syslog-ng for example) * Added SocketHandler (for use with syslog-ng for example)
* Added NormalizerFormatter * Added NormalizerFormatter
* Added the possibility to change the activation strategy of the FingersCrossedHandler * Added the possibility to change the activation strategy of the FingersCrossedHandler

View File

@ -46,6 +46,7 @@ Handlers
- _NativeMailHandler_: Sends emails using PHP's mail() function. - _NativeMailHandler_: Sends emails using PHP's mail() function.
- _SwiftMailerHandler_: Sends emails using a SwiftMailer instance. - _SwiftMailerHandler_: Sends emails using a SwiftMailer instance.
- _SyslogHandler_: Logs records to the syslog. - _SyslogHandler_: Logs records to the syslog.
- _GelfHandler_: Logs records to a [Graylog2](http://www.graylog2.org) server.
- _SocketHandler_: Logs records to [sockets](http://php.net/fsockopen), use this for UNIX and TCP sockets. See an [example](https://github.com/Seldaek/monolog/blob/master/doc/sockets.md). - _SocketHandler_: Logs records to [sockets](http://php.net/fsockopen), use this for UNIX and TCP sockets. See an [example](https://github.com/Seldaek/monolog/blob/master/doc/sockets.md).
Wrappers / Special Handlers Wrappers / Special Handlers
@ -65,6 +66,7 @@ Formatters
- _JsonFormatter_: Encodes a log record into json. - _JsonFormatter_: Encodes a log record into json.
- _WildfireFormatter_: Used to format log records into the Wildfire/FirePHP protocol, only useful for the FirePHPHandler. - _WildfireFormatter_: Used to format log records into the Wildfire/FirePHP protocol, only useful for the FirePHPHandler.
- _ChromePHPFormatter_: Used to format log records into the ChromePHP format, only useful for the ChromePHPHandler. - _ChromePHPFormatter_: Used to format log records into the ChromePHP format, only useful for the ChromePHPHandler.
- _GelfFormatter_: Used to format log records into Gelf message instances, only useful for the GelfHandler.
Processors Processors
---------- ----------