Skip to content

Commit

Permalink
refactor: 优化未开启事务时的日志级别
Browse files Browse the repository at this point in the history
  • Loading branch information
zhou-hao committed Aug 14, 2024
1 parent 050ea03 commit 4687c88
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ public static Mono<Void> registerSynchronization(TransactionSynchronization sync
}
return Mono.empty();
} else {
log.warn("transaction is not active,execute TransactionSynchronization [{}] immediately.", synchronization);
log.info("transaction is not active,execute TransactionSynchronization [{}] immediately.", synchronization);
return whenNoTransaction.apply(synchronization);
}
})
Expand Down

0 comments on commit 4687c88

Please sign in to comment.