Skip to content
This repository has been archived by the owner on Aug 13, 2022. It is now read-only.

Commit

Permalink
[#55] 에러 로그 출력 포맷 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
cyj199637 committed Jan 18, 2021
1 parent 5e01efb commit d202537
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ public void initialize() {
FirebaseApp.initializeApp(options);
}
} catch (IOException e) {
log.error("Failed initializing FilebaseApp: {}, {}", e.getMessage(), apiKeyPath);
log.error("Failed initializing FilebaseApp: {}", e);
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ private String getAccessToken() {
googleCredential.refreshToken();
return googleCredential.getAccessToken();
} catch (IOException e) {
log.error("Failed getting access token: {}", e.getMessage());
log.error("Failed getting access token: {}", e);
}
return null;
}
Expand Down

0 comments on commit d202537

Please sign in to comment.