I've got the logging framework working i creating the following in
weblogic 6.1:
Connection Factories
TCFactory
Servers
MyJMSServer
Topics
LoggingJMSTopic
LogServiceConfig
myTopic
in the properties file
debug=true
in startup
framework.boot.debug=true
Now when i try to log using
logService.logDebug( "LoggingJMSTopic", "Test debug log" );
logService.logError( "LoggingJMSTopic", "Test debug log" );
logService.logWarn( "LoggingJMSTopic", "Test debug log" );
logService.log( "LoggingJMSTopic", "Test debug log" );
My properties file is to save to a file
when i start it up my LoggingJMSTopic.xml file is created but this
information is never placed in it.
Any ideas why?
Thanks