Skip to content

Commit

Permalink
Fix log
Browse files Browse the repository at this point in the history
  • Loading branch information
azizbekxm committed Nov 28, 2024
1 parent f569bd4 commit 7eb0c3c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/org/folio/dao/fund/FundPostgresDAO.java
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ public Future<Void> updateRelatedCurrentFYBudgets(Fund fund, DBConn conn) {
public Future<Void> updateFund(Fund fund, DBConn conn) {
logger.debug("Trying to update finance storage fund by id {}", fund.getId());
return conn.update(FUND_TABLE, fund, fund.getId())
.onSuccess(x -> logger.info("Fund record {} was successfully updated", fund))
.onSuccess(x -> logger.info("Fund record '{}' was successfully updated", fund.getId()))
.mapEmpty();
}

Expand Down

0 comments on commit 7eb0c3c

Please sign in to comment.