/**
  * @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;
     }
 }