Commit 68f9b2a9 authored by Fabien Potencier's avatar Fabien Potencier

updated docs for previous merge

parent 2798eb19
......@@ -4,6 +4,7 @@ Changelog
1.2.0 (2013-XX-XX)
------------------
* Allowed disabling the boot logic of MonologServiceProvider
* Reverted "convert attributes on the request that actually exist"
* [BC BREAK] Routes are now always added in the order of their registration (even for mounted routes)
* Added run() on Route to be able to define the controller code
......
......@@ -85,6 +85,12 @@ it by extending the ``monolog`` service::
return $monolog;
}));
By default, all requests are logged through a ``before`` and ``after``
middleware at boot time. You can disable or customize this behavior by
overriding the ``monolog.boot.before`` and ``monolog.boot.after`` services
respectively. The provider also registers a default ``error`` handler which
logs errors; it can be customized via the ``monolog.boot.error`` service.
Traits
------
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment