/**
  * @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;
     }
 }
 /**
  * @see \str\underscoreToCamelCase() underscoreToCamelCase
  */
 public static function underscoreToCamelCase($string_)
 {
     return \str\underscoreToCamelCase($string_);
 }