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

Bubbling defaults to true

This commit is contained in:
Jordi Boggiano
2011-06-10 16:03:47 +02:00
parent 9c7cb32b83
commit 6a2d207f98
6 changed files with 6 additions and 6 deletions

View File

@@ -24,7 +24,7 @@ class GroupHandler extends AbstractHandler
* @param array $handlers Array of Handlers.
* @param Boolean $bubble Whether the messages that are handled can bubble up the stack or not
*/
public function __construct(array $handlers, $bubble = false)
public function __construct(array $handlers, $bubble = true)
{
foreach ($handlers as $handler) {
if (!$handler instanceof HandlerInterface) {