Skip to content

Commit

Permalink
feat: fix logger issue (#1427)
Browse files Browse the repository at this point in the history
  • Loading branch information
MiguelAHM committed Apr 10, 2024
1 parent eb91e9f commit 73d236e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,7 @@ private void saveToDatabase(final List<NrtmVersionInfo> sourceToNewVersion, fin
LOGGER.info("Source {} snapshot file {}", source, fileName);
LOGGER.info("Calculated hash for {}", source);
updateNrtmFileRepository.saveSnapshotVersion(versionInfo.get(), fileName, calculateSha256(payload), payload);
LOGGER.info("Wrote {} to DB {}", source);
LOGGER.info("Wrote {} to DB", source);
} catch (final Throwable t) {
LOGGER.error("Unexpected throwable caught when inserting snapshot file", t);
}
Expand Down

0 comments on commit 73d236e

Please sign in to comment.