Skip to Content
0
Former Member
Jun 25, 2009 at 12:28 PM

How can I read logs written by the logging framework?

220 Views

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