Hi!
i'm having troubles to use new wcs logging system, oracle diagnostic logging.
It is enabled by default and if i use sites default logging, for example ics.LogMsg method, the messages are logged in sites.log file.
The point is, i created a new logger (for example, "controller.home") and added it to wcs loggers trough wcs admin interface, but the messages are not logged.
In my controller, i used this logger code:
import oracle.core.ojdl.logging.ODLLevel
import oracle.core.ojdl.logging.ODLLogger
//....
ODLLogger logger = ODLLogger.getODLLogger("controller.home");
logger.log(ODLLevel.INFO, "hello world");
What its wrong?