Beispiel #1
0
 /**
  * Sets up Logger.
  */
 private function setUpLogger()
 {
     $this->loadClassCheckInterface('logger', 'Framework\\Core\\FrameworkClasses\\Logging\\ILogger');
     $this->logger = new Logger($this->config->get('log_file'), $this->config->get('new_line'), $this->config->get('log_time_format'), $this->config->get('debug_mode'));
     ExceptionHandler::setLogger($this->logger);
 }