> - logger attribute: protected final Log logger =
> LogFactory.getLog(this.getClass())
> - added logging statements throughout code (e.g., logger.info("Creating
> principal for...")Looks like you're using commons-logging API for the logger, which may be part of the trouble. We switched to slf4j recently, and you should use that for consistency. You can make commons-logging work by using a logging bridge, but slf4j will work out of the box and has some API features like parameterized logging statemens that are helpful. M -- You are currently subscribed to [email protected] as: [email protected] To unsubscribe, change settings or access archives, see http://www.ja-sig.org/wiki/display/JSG/cas-user
