Ejemplo n.º 1
0
 /**
  * Constructor
  *
  * @param integer $level initial log level
  */
 public function __construct($level = null)
 {
     parent::__construct('root');
     if ($level == null) {
         $level = Payone_Log4php_LoggerLevel::getLevelAll();
     }
     $this->setLevel($level);
 }