modules/enterprise/server/container/src/main/resources/jbossas/server/default/conf/jboss-log4j.xml | 6 ++++++ 1 file changed, 6 insertions(+)
New commits: commit 3f33130e4bbd732fb77835bcf8231039e08726ac Author: Ian Springer ian.springer@redhat.com Date: Tue Nov 22 16:59:23 2011 -0500
[BZ 620603] turn log level down from WARN to ERROR for org.hibernate.hql.ast.QueryTranslatorImpl to suppress "firstResult/maxResults specified with collection fetch; applying in memory!" warning messages (https://bugzilla.redhat.com/show_bug.cgi?id=620603)
diff --git a/modules/enterprise/server/container/src/main/resources/jbossas/server/default/conf/jboss-log4j.xml b/modules/enterprise/server/container/src/main/resources/jbossas/server/default/conf/jboss-log4j.xml index 16b0384..936c5b9 100644 --- a/modules/enterprise/server/container/src/main/resources/jbossas/server/default/conf/jboss-log4j.xml +++ b/modules/enterprise/server/container/src/main/resources/jbossas/server/default/conf/jboss-log4j.xml @@ -315,6 +315,12 @@ <priority value="OFF"/> </category>
+ <!-- Suppress "firstResult/maxResults specified with collection fetch; applying in memory!" WARN messages + (see https://bugzilla.redhat.com/show_bug.cgi?id=620603). --> + <category name="org.hibernate.hql.ast.QueryTranslatorImpl"> + <priority value="ERROR"/> + </category> + <!-- log SQL statements --> <!-- <category name="org.hibernate.SQL">
rhq-commits@lists.fedorahosted.org