Hello,
Looking at CAS 5.3 source code, I need to customize action class, so I create a class with the same name/package in my overlay, but I cannot resolve compile error on LOGGER.
I understand with Lombok and @Slf4j, I get object: log for free. But, I do not know how LOGGER is defined in CAS code.
Thx!
Yan
in action classes, I see this:
@Slf4j
public class SendPasswordResetInstructionsAction extends AbstractAction {
LOGGER.debug(...) <== this is how logging is done, is this referring to the same logger object in parent?
In AbstractAction, i see this.
protected final Log logger = LogFactory.getLog(getClass());
Thanks,
Yan