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

Simplified code

This commit is contained in:
Christophe Coevoet
2011-05-06 19:48:34 +02:00
parent e059c441e0
commit 708d799e1d
3 changed files with 2 additions and 21 deletions

View File

@@ -52,16 +52,6 @@ class FirePHPHandler extends AbstractHandler
*/
protected static $messageIndex = 1;
/**
* @param integer $level The minimum logging level at which this handler will be triggered
* @param Boolean $bubble Whether the messages that are handled can bubble up the stack or not
*/
public function __construct($level = Logger::DEBUG, $bubble = false)
{
$this->level = $level;
$this->bubble = $bubble;
}
/**
* Base header creation function used by init headers & record headers
*