/**
  * @see \Components\Log_Appender_Abstract::initialize() initialize
  */
 public function initialize()
 {
     if (false === $this->m_initialized) {
         parent::initialize();
         openlog($this->name, $this->options, $this->facility);
     }
 }
 /**
  * @see \Components\Log_Appender::initialize() initialize
  */
 public function initialize()
 {
     if (false === $this->m_initialized) {
         parent::initialize();
         \LoggerPropertyConfigurator::configure($this->getConfigurationFile());
         $this->m_logger = $this->getLoggerImpl(\str\underscoreToCamelCase(__CLASS__));
         $this->level = self::$m_mapNameToLevel[strtolower($this->m_logger->getEffectiveLevel())];
         $this->m_initialized = true;
     }
 }
 public function __construct($name_, $file_, $level_ = null)
 {
     parent::__construct($name_, $level_);
     $this->m_file = $file_;
 }
 public function __construct($name_ = 'null', $level_ = null)
 {
     parent::__construct($name_, $level_);
 }