결론 : 로그를 System.out으로 찍지 말아라
필요 로그를 클래스로 관리하는 방법
public clas SimpleLogger {
pricate static final boolean printFlag=false;
public static void log(String message) {
if (printFlag) {
logger.info(message);
}
}
}
public class Logger {
final Logger logger = LoggerFactory.getLogger(Logger.class);
Integer t;
Integer oldT;
public void setTemperature(Integer temperature) {
oldT = t;
t = temperature;
logger.debug(t, oldT);
if (temperature.intValue() > 50) {
logger.info("50Up");
}
}
}
'개발서적 > 자바 성능 튜닝 이야기' 카테고리의 다른 글
[자성튜이] 서버를 어떻게 세팅해야 할까? (1) | 2024.09.16 |
---|---|
[자성튜이] JSP와 서블릿, Spring (0) | 2024.09.16 |
[자성튜이] IO 이야이야기 (0) | 2024.08.25 |
[자성튜이] static에 관하여 / reflection (0) | 2024.08.22 |
[자성튜이] String을 자제해라 / for문을 더 빠르게?? (0) | 2024.08.22 |