1234567891011121314151617 |
- package com.hz.employmentsite.util;
- import org.slf4j.Logger;
- import org.slf4j.LoggerFactory;
- import org.springframework.context.annotation.Bean;
- import org.springframework.stereotype.Component;
- @Component
- public class LoggerConfig {
- @Bean
- public Logger logger() {
- return LoggerFactory.getLogger(this.getClass());
- }
- }
|