Skip to content

Commit

Permalink
chore: 로그 출력 변수 수정 (#621)
Browse files Browse the repository at this point in the history
  • Loading branch information
mzeong authored Sep 27, 2024
1 parent 3321e96 commit f020153
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ protected Object determineCurrentLookupKey() {
boolean isTransactionActive = TransactionSynchronizationManager.isActualTransactionActive();
boolean readOnly = TransactionSynchronizationManager.isCurrentTransactionReadOnly();
ReplicationType type = ReplicationType.from(isTransactionActive, readOnly);
log.info("(트랜잭션 활성화 여부 : {}) (readOnly : {}) => {} DB 연결", isTransactionActive, isTransactionActive, type);
log.info("(트랜잭션 활성화 여부 : {}) (readOnly : {}) => {} DB 연결", isTransactionActive, readOnly, type);
return type;
}
}

0 comments on commit f020153

Please sign in to comment.