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
반응형
'IT 인터넷 > 소나큐브' 카테고리의 다른 글
[소나큐브] Null pointers should not be dereferenced. (0) | 2022.10.13 |
---|---|
[소나큐브] Unnecessary imports should be removed. (0) | 2022.10.13 |
[소나큐브] Collection.isEmpty() should be used to test for emptiness (0) | 2022.10.12 |
[소나큐브] Field names should comply with a naming convention (0) | 2022.10.12 |
[소나큐브] String literals should not be duplicated (0) | 2022.10.12 |