我在这样的 Worklight 混合项目中有一个自定义的身份验证器
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");
}
...
}
但我看不到 Worklight 将这些记录器消息放在哪里。我错过了什么吗?