Skip to content

Commit 5436f8b

Browse files
authored
Merge pull request #64 from ConnectCo/fix/#53/firebaseconfig-오류-수정
[FIX]오류 해결을 위한 로그 추가
2 parents 1db86b0 + f656dc7 commit 5436f8b

1 file changed

Lines changed: 3 additions & 0 deletions

File tree

src/main/java/com/connectCo/config/FireBaseConfig.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,10 @@ public class FireBaseConfig {
2727
@PostConstruct
2828
public void init(){
2929
try (InputStream serviceAccount = getClass().getClassLoader().getResourceAsStream(serviceAccountFilePath)){
30+
log.info("Service account file path: {}", serviceAccountFilePath);
31+
3032
if (serviceAccount == null) {
33+
log.error("Firebase service account file not found at: {}", serviceAccountFilePath);
3134
throw new CustomApiException(ErrorCode.FIREBASE_INIT_FAILED);
3235
}
3336

0 commit comments

Comments
 (0)