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

[409 byte] By [ConnectorRuntimeException] at [2007-11-26 10:56:08]
# 1
Logging levels are configured via admin console: Configurations-->Instance Config-->LoggerSettings-->Log Levels.
Sultal at 2007-7-7 3:09:22 > top of Java-index,Application & Integration Servers,Application Servers...
# 2
I tried to set EJB contrainer loggin level to "all" but it does not work for java.util.logging package. What other setting should I change? Many thanks.SKC
ConnectorRuntimeException at 2007-7-7 3:09:22 > top of Java-index,Application & Integration Servers,Application Servers...
# 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 > top of Java-index,Application & Integration Servers,Application Servers...