HHH-13737 : Correct log message and fix checkstyle failure

This commit is contained in:
Gail Badner 2019-11-14 15:02:08 -08:00 committed by gbadner
parent edb3c1992c
commit 39a0c2f714
1 changed files with 2 additions and 2 deletions

View File

@ -3536,8 +3536,8 @@ public final class SessionImpl
// Just log the exception and return null. // Just log the exception and return null.
if ( log.isDebugEnabled() ) { if ( log.isDebugEnabled() ) {
log.debug( "JDBCException was thrown for a transaction marked for rollback; " + log.debug( "JDBCException was thrown for a transaction marked for rollback; " +
"this is probably due to IronJacamar failing fast after " + "this is probably due to an operation failing fast due to the " +
"transaction was marked for rollback.", e ); "transaction marked for rollback.", e );
} }
return null; return null;
} }