Skip to content

Commit

Permalink
change log debug to log error
Browse files Browse the repository at this point in the history
  • Loading branch information
SamuelQuetin committed Mar 25, 2024
1 parent 6bb076a commit 2cad4ca
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ public ResultWsDto onlineIdentifier2Ppn(@PathVariable String type, @PathVariable
log.error("erreur dans la récupération de la notice correspondant à l'identifiant " + onlineIdentifier);
throw new IOException(ex);
} catch (IllegalPpnException ex) {
log.debug("Impossible de retrouver une notice correspondant à cet identifiant");
log.error("Impossible de retrouver une notice correspondant à l'identifiant " + onlineIdentifier);
throw new IOException(ex);
}
return resultat;
Expand Down

0 comments on commit 2cad4ca

Please sign in to comment.