Skip to content

Commit

Permalink
Merge branch 'main' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
jms0324 authored May 14, 2024
2 parents 6f917c0 + dc69c91 commit fc6e4df
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -267,6 +267,7 @@ public ResponseEntity<?> updateDiary(
@RequestPart(value="diaryId") Long diaryId,
@RequestPart(value = "diaryTitle") String diaryTitle,
@RequestPart(value = "diaryContent") String diaryContent) {

logger.info("Authorization Header: {}", authHeader);
logger.info("Received diaryId: {}", diaryId);
logger.info("Received diaryTitle: {}", diaryTitle);
Expand Down Expand Up @@ -308,6 +309,7 @@ public ResponseEntity<?> updateDiary(

}
catch (Exception e){

logger.error("An error occurred while updating diary", e);
e.printStackTrace();

Expand Down

0 comments on commit fc6e4df

Please sign in to comment.