log() public méthode

Log that a mapping was run.
public log ( $file, $batch )
$file
$batch
Exemple #1
0
 /**
  * Run the given mapping file.
  *
  * @param $file
  * @param $batch
  */
 public function runMap($file, $batch)
 {
     $mapping = $this->resolve($file);
     $mapping->map();
     $this->repository->log($file, $batch);
     $this->note('<info>Mapped:</info> ' . $file);
 }