Wauw, cheers for the speedy reply.
You are probably right, seems logical about checking for DB connections. We did enable connection pooling for this JForum webapp. Once we get one of these entries, they seem to continue (I can see this in my Eclipse Console window, get a new entry every second or so). I see we are also getting:
2834072 [ContainerBackgroundProcessor[StandardEngine[Catalina]]] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - trace com.mchange.v2.resourcepool.BasicResourcePool@312cbb [managed: 8, unused: 7, e
xcluded: 0] (e.g. com.mchange.v2.c3p0.impl.NewPooledConnection@15e8edc)
But I suppose that's just the DB classes doing their work.
In order to get rid of these log entries, in web.xml, I have set JForum Controller's debug element to to false:
<init-param>
<param-name>debug</param-name>
<param-value>false</param-value>
</init-param>
and in log4j.xml I have set all logging to only report fatal output:
<category name="org.jgroups">
<priority value="fatal"/>
<appender-ref ref="jforum-stdout"/>
</category>
<category name="org.jboss">
<priority value="fatal"/>
<appender-ref ref="jforum-stdout"/>
</category>
<category name="net.jforum">
<priority value="fatal" />
<appender-ref ref="jforum-stdout" />
</category>
<category name="freemarker">
<priority value="fatal"/>
<appender-ref ref="jforum-stdout"/>
</category>
However, I'm still getting all the
6283020 [Timer-135] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - Checking for expired resources - Mon Oct 29 12:56:52 GMT 2007 [com.mchange.v2.resourcepool.BasicResourcePool@16f3619]
6283020 [Timer-135] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - BEGIN check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@16f3619]
6283020 [Timer-135] DEBUG com.mchange.v2.resourcepool.BasicResourcePool - FINISHED check for expired resources. [com.mchange.v2.resourcepool.BasicResourcePool@16f3619]
messages. Thanks for any help here.
[originally posted on jforum.net by akindo]