package com.pollex.pam.config;
|
|
import com.pollex.pam.aop.logging.LoggingAspect;
|
import org.springframework.context.annotation.*;
|
import org.springframework.core.env.Environment;
|
import tech.jhipster.config.JHipsterConstants;
|
|
@Configuration
|
@EnableAspectJAutoProxy
|
public class LoggingAspectConfiguration {
|
|
@Bean
|
@Profile(JHipsterConstants.SPRING_PROFILE_DEVELOPMENT)
|
public LoggingAspect loggingAspect(Environment env) {
|
return new LoggingAspect(env);
|
}
|
}
|