HHH-6421 Reduce log level of LazyInitializationException from ERROR to TRACE

This commit is contained in:
Emmanuel Bernard 2011-07-08 18:11:36 +02:00
parent e47460317c
commit 310c0441bb
1 changed files with 1 additions and 1 deletions

View File

@ -43,7 +43,7 @@ public class LazyInitializationException extends HibernateException {
public LazyInitializationException(String msg) {
super(msg);
LOG.error(msg, this);
LOG.trace(msg, this);
}
}