1
0
mirror of https://github.com/Seldaek/monolog.git synced 2025-10-16 14:16:29 +02:00

Updated README

This commit is contained in:
Jordi Boggiano
2011-05-09 14:57:05 +02:00
parent 580df22f5b
commit 0ce2cb2fc8

View File

@@ -28,6 +28,9 @@ Each Handler also has a Formatter, a default one with settings that make sense w
Custom severity levels are not available. Only six levels (debug, info, warning, error, critical, alert) are present for basic filtering purposes, but for sorting and other use cases that would require flexibility, you should add Processors to the Logger that can add extra information (tags, user ip, ..) to the records before they are handled.
Docs
====
Handlers
--------
@@ -46,6 +49,21 @@ Wrappers / Special Handlers
- _BufferHandler_: This handler will buffer all the log records it receives until close() is called at which point it will call handleBatch() on the handler it wraps with all the log messages at once. This is very useful to send an email with all records at once for example instead of having one mail for every log record.
- _TestHandler_: Used for testing, it records everything that is sent to it and has accessors to read out the information.
Formatters
----------
- _LineFormatter_: Formats a log record into a one-line string.
- _JsonFormatter_: Encodes a log record into json.
- _WildfireFormatter_: Used to format log records into the Wildfire/FirePHP protocol, only useful for the FirePHPHandler.
Processors
----------
- _WebProcessor_: Adds the current request URI, request method and client IP to a log record.
About
=====
Requirements
------------