How to output log msg to server.log
Hi,
I am using SJSAS 8.1 std ed. I use java.util.logging
package in my pograms for logging message. I found out that only the INFO
level messages can be shown in the server.log
. My logging messages are output from my EJB and servlet codes.
Which configuration file I can set to display other levels of the logging messages?
Thanks a lot for your help.
Simon
# 3
'ALL' is not a valid logging level, please use one of the following:
The default level is INFO, meaning that messages at that level or higher (WARNING, SEVERE) appear in the log. Choose any of the following values (listed from highest to lowest):
SEVERE
WARNING
INFO
CONFIG
FINE
FINER
FINEST
OFF
In domain.xml, change ejb-container="OFF" to ejb-container="INFO", or one of the other levels.
Please see the following for more details:
http://docs.sun.com/app/docs/doc/819-2641/6n4trr8qo?q=finest&a=view
Hope this helps
roho at 2007-7-7 3:09:22 >
