Example #1
0
 /**
  * Gets the internal Log4php_Logger, configured
  * @return Payone_Log4php_Logger
  */
 public function getLogger()
 {
     if ($this->logger === null) {
         $this->logger = $this->buildLoggerDefault();
     }
     $internalConfig = $this->buildInternalConfig();
     $this->logger->configure($internalConfig);
     return $this->logger;
 }