LoggerConfig.java 342 B

1234567891011121314151617
  1. package com.hz.employmentsite.util;
  2. import org.slf4j.Logger;
  3. import org.slf4j.LoggerFactory;
  4. import org.springframework.context.annotation.Bean;
  5. import org.springframework.stereotype.Component;
  6. @Component
  7. public class LoggerConfig {
  8. @Bean
  9. public Logger logger() {
  10. return LoggerFactory.getLogger(this.getClass());
  11. }
  12. }