/**
  * @param string $localPath
  * @param string $remoteName
  */
 private function downloadFile($localPath, $remoteName)
 {
     if ($this->debug) {
         $this->systemLogger->log('target ' . $this->name . ': downloadFile');
     }
     $this->ftpService->download($localPath, $remoteName);
 }
 /**
  * @param string $localPath
  * @param string $remoteName
  */
 private function downloadFile($localPath, $remoteName)
 {
     if ($this->debug) {
         $this->systemLogger->log('storage ' . $this->name . ': downloadFile $localPath: ' . $localPath . ', $remoteName: ' . $remoteName);
     }
     $this->ftpService->download($localPath, $remoteName);
 }