We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 1db86b0 + f656dc7 commit 5436f8bCopy full SHA for 5436f8b
1 file changed
src/main/java/com/connectCo/config/FireBaseConfig.java
@@ -27,7 +27,10 @@ public class FireBaseConfig {
27
@PostConstruct
28
public void init(){
29
try (InputStream serviceAccount = getClass().getClassLoader().getResourceAsStream(serviceAccountFilePath)){
30
+ log.info("Service account file path: {}", serviceAccountFilePath);
31
+
32
if (serviceAccount == null) {
33
+ log.error("Firebase service account file not found at: {}", serviceAccountFilePath);
34
throw new CustomApiException(ErrorCode.FIREBASE_INIT_FAILED);
35
}
36
0 commit comments