Log Annotations
@Slf4j
@Slf4j
public class LogExample {
public void example() {
log.info("example");
}
} public class LogExample {
private static final org.slf4j.Logger log = org.slf4j.LoggerFactory.getLogger(LogExample.class);
}출처
Last updated