1

I am developing a web application that runs on weblogic 10g, JSF, oracle database. When I enter a page that requires to get huge query results, I come across with the following warnings:

1  xyz-warPU  INFO   [[ACTIVE] ExecuteThread: '1' for queue: 'weblogic.kernel.Default (self-tuning)'] openjpa.jdbc.JDBC - Using dictionary class "kodo.jdbc.sql.KodoOracleDictionary" (Oracle Oracle Database 10g Express Edition Release 10.2.0.1.0 - Production ,Oracle JDBC driver 11.1.0.6.0-Production+).

112  xyz-warPU  INFO   [[ACTIVE] ExecuteThread: '1' for queue: 'weblogic.kernel.Default (self-tuning)'] openjpa.Enhance - Creating subclass and redefining methods for "[class com.asd.xyz]". This means that your application will be less efficient than it would if you ran the OpenJPA enhancer.

While jumping through the pages my system gets very slow and the logs are being thrown continously.

My question is how to disable this logging feature to be able to access pages as desired?

Thanks in advance.

4

1 回答 1

2

更改应用程序服务器的日志记录级别。从最多到最少的日志记录是:

TRACE, DEBUG, INFO, NOTICE, WARNING, ERROR, CRITICAL, ALERT, EMERGENCY

在开发应用程序时,您可能会使用 TRACE 或 DEBUG,但在生产中它可能应该是 WARNING 或更高。

参考:配置 WebLogic 日志服务

于 2013-05-15T15:08:15.407 回答