IT 인터넷/소나큐브
[소나큐브] Format specifiers should be used instead of string concatenation.
바다소년3904
2022. 10. 13. 10:53
728x90
[오류내용]
Format specifiers should be used instead of string concatenation.
Printf-style format strings should be used correctly.
[해결방안]
CASE 1 :
logger.debug( "ifKey1 : {}", ifKey2 );
CASE 2 :
System.out.println( String.format("ifKey1 : %s", ifKey2) );
slf4j Logger 사용법은 아래 링크 참고하길 바란다.
https://www.slf4j.org/api/org/slf4j/helpers/MessageFormatter.html
String.format 관련 자세한 사용법은 아래 링크 참고하길 바란다.
https://sealove3904.tistory.com/31?category=968915
728x90
반응형