MethodLogger
// Map the Aspect
mapAspect("MethodLogger")
.to("coldbox.system.aop.aspects.MethodLogger")
.initArg(name="logResults",value="true or false");
// Bind the Aspect to all service class methods
bindAspect(classes=matcher().regex('.*Service'), methods=matcher().any(), aspects="MethodLogger");Was this helpful?