Newbie question:
We recently switched to utilizing JPA for data access within Activiti, and our output console started getting very verbose when executing Activiti SQL. We are using slf4j and log4j. I have tried limiting the logging level for both Activiti and Hibernate JPA and have not been able to stop the verbose chatter in the console and have noted that the console chatter does not appear to have a logging level associated with it. Can someone point me towards information on configuring the logging to reduce the SQL chatter from Activiti with JPA?
<!– JNDI Data Source Definitions –>
<jee:jndi-lookup id="datasource11g" jndi-name="/jdbc/orclhcadev" resource-ref="true" />
<!– Configure the transaction manager beans –>
<bean id="transactionManager" class="org.springframework.orm.jpa.JpaTransactionManager">
<property name="entityManagerFactory" ref="entityManagerFactory" />
</bean>
<!– Activiti Engine Startup Configuration –>
<bean id="processEngineConfiguration" class="org.activiti.spring.SpringProcessEngineConfiguration">
<property name="databaseType" value="oracle" />
<property name="dataSource" ref="datasource11g" />
<property name="transactionManager" ref="transactionManager" />
<property name="jobExecutorActivate" value="false" />
<property name="history" value="full" />
<property name="databaseSchemaUpdate" value="true" />
</bean>