Resolve 5790 Prefix a unit test log for hibernate exception in HapiFhirHibernateJpaDialect (#5791)

* prefixed the log message with "Unit test: "

* resolved review comments
This commit is contained in:
TynerGjs 2024-03-20 13:36:21 -04:00 committed by GitHub
parent 7742aa76c5
commit 4a726dd2d1
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -74,7 +74,7 @@ public class HapiFhirHibernateJpaDialect extends HibernateJpaDialect {
}
if (HapiSystemProperties.isUnitTestModeEnabled()) {
ourLog.error("Hibernate exception", theException);
ourLog.error("Unit test mode: Hibernate exception", theException);
}
if (theException instanceof ConstraintViolationException) {