package ca.intelliware.ihtsdo.mlds.config; import org.springframework.context.annotation.Bean; import org.springframework.context.annotation.EnableAspectJAutoProxy; import org.springframework.context.annotation.Profile; import ca.intelliware.ihtsdo.mlds.aop.logging.LoggingAspect; //@Configuration @EnableAspectJAutoProxy public class LoggingAspectConfiguration { @Bean @Profile(Constants.SPRING_PROFILE_DEVELOPMENT) public LoggingAspect loggingAspect() { return new LoggingAspect(); } }