package ee.esutoniagodesu.config; import ee.esutoniagodesu.aop.logging.LoggingAspect; import org.springframework.context.annotation.Bean; import org.springframework.context.annotation.Configuration; import org.springframework.context.annotation.EnableAspectJAutoProxy; import org.springframework.context.annotation.Profile; @Configuration @EnableAspectJAutoProxy public class LoggingAspectConfiguration { @Bean @Profile(Profiles.SPRING_PROFILE_DEV) public LoggingAspect loggingAspect() { return new LoggingAspect(); } }