Skip to content

Commit

Permalink
Merge pull request #52 from abes-esr/fix_ajout-de-logs-sur-batch
Browse files Browse the repository at this point in the history
- Ajout de logs sur FichierProcessor
  • Loading branch information
EryneKL authored Oct 3, 2024
2 parents 9d8d2c4 + 1d3d180 commit 06f819b
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -64,10 +64,12 @@ public void beforeStep(StepExecution stepExecution) {
this.fichierSauvegardeSuppTxt = new FichierSauvegardeSuppTxt();
this.fichierSauvegardeSuppTxt.setPath(Path.of(String.valueOf(executionContext.get("fichierTxtPath"))));
this.fichierSauvegardeSuppTxt.setFilename(String.valueOf(executionContext.get("fichierTxtName")));
log.info("Initialisation fichier txt: " + this.fichierSauvegardeSuppTxt.getPath() + this.fichierSauvegardeSuppTxt.getFilename());

this.fichierSauvegardeSuppcsv = new FichierSauvegardeSuppCsv(this.referenceService);
this.fichierSauvegardeSuppcsv.setPath(Path.of(String.valueOf(executionContext.get("fichierCsvPath"))));
this.fichierSauvegardeSuppcsv.setFilename(String.valueOf(executionContext.get("fichierCsvName")));
log.info("Initialisation fichier csv: " + this.fichierSauvegardeSuppTxt.getPath() + this.fichierSauvegardeSuppTxt.getFilename());

log.info(Constant.POUR_LA_DEMANDE + this.demande.getNumDemande());
}
Expand Down

0 comments on commit 06f819b

Please sign in to comment.