Skip to content

Commit

Permalink
Fix incorrect log string
Browse files Browse the repository at this point in the history
  • Loading branch information
GenieTim committed Dec 14, 2024
1 parent eed1a08 commit 620c163
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -271,7 +271,7 @@ public void start() {
specimen.setDateLastNahimaUpdated(new Date());
if (specimen.getSpecimenId() != null && specimen.getSpecimenId() > 0) {
try {
log.debug("No specimen id, will not update the database");
log.debug("Will update the specimen with id " + specimen.getSpecimenId() + " in the database after export.");
sls.attachDirty(specimen);
} catch (SaveFailedException e) {
lastError = e;
Expand Down

0 comments on commit 620c163

Please sign in to comment.