I have a custom Autenticator in a Worklight hybrid project like this
public class MyCustomAuthenticator implements WorkLightAuthenticator{
private static final Logger logger = Logger.getLogger(MyCustomAuthenticator.class.getName());
private Map<String, Object> authenticationData = null;
public void init(Map<String, String> options) throws MissingConfigurationOptionException {
logger.info("MyCustomAuthenticator initialized");
}
...
}
But I don't see where does Worklight put those logger messages. Am I missing something?