Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: 불필요한 로그 제거 #103

Merged
merged 1 commit into from
Nov 13, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,7 @@
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.bind.annotation.RestController;
import org.springframework.web.multipart.MultipartFile;
import lombok.extern.slf4j.Slf4j;

@Slf4j
@Tag(name = "Members", description = "회원 관리 API")
@RequiredArgsConstructor
@RequestMapping("/api/members")
Expand Down Expand Up @@ -119,11 +117,6 @@ public ResponseEntity<SuccessResponse<Void>> updateMemberInfo(
@Parameter(description = "새로운 닉네임")
@RequestParam(required = false) String nickname
) {
log.info("프로필 업데이트 요청 들어옴");
log.info("memberDetails: {}", memberDetails);
log.info("profileImage: {}", profileImage);
log.info("nickname: {}", nickname);

validateProfileUpdate(profileImage, nickname);

memberService.updateMemberInfo(memberDetails.getId(), profileImage, nickname);
Expand Down
10 changes: 0 additions & 10 deletions src/main/resources/application-prod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,6 @@ spring:
hibernate:
jdbc:
time_zone: Asia/Seoul
format_sql: true
show-sql: true
hibernate:
ddl-auto: none

Expand All @@ -24,14 +22,6 @@ spring:
max-request-size: 25MB
resolve-lazily: true

logging:
level:
org:
hibernate:
orm:
jdbc:
bind: trace

aws:
s3:
client: AmazonS3
Expand Down
Loading