HHH-13806 CoreMessageLogger#unableToLoadCommand is not printing the cause of the error

This commit is contained in:
Sanne Grinovero 2020-01-09 08:51:50 +00:00
parent 0b938bd16b
commit 19b7921d1d
1 changed files with 2 additions and 2 deletions

View File

@ -1116,8 +1116,8 @@ public interface CoreMessageLogger extends BasicLogger {
void unableToJoinTransaction(String transactionStrategy);
@LogMessage(level = INFO)
@Message(value = "Error performing load command : %s", id = 327)
void unableToLoadCommand(HibernateException e);
@Message(value = "Error performing load command", id = 327)
void unableToLoadCommand(@Cause HibernateException e);
@LogMessage(level = WARN)
@Message(value = "Unable to load/access derby driver class sysinfo to check versions : %s", id = 328)