Hello,
while implementing my application service operations I make use of the Logging Framework.
To this end, each application service declares a location as follows:
private final static Location LOGGER = Location.getLocation(...);
Furthermore, operations write to this location as follows:
public void doSomething(...) {
LOGGER.entering("...");
...
LOGGER.exiting("...");
}
Everything seems to work fine but where and how can I read these logs? Do I have to configure something in the NWA?
Best regards
Alexander