Skip to content

Commit

Permalink
Revert "log: 방 검색 시 파라미터로 넘어온 키워드 로깅"
Browse files Browse the repository at this point in the history
This reverts commit fdf0ee2.
  • Loading branch information
ghkdgus29 committed Jun 27, 2024
1 parent fdf0ee2 commit 1cd32cc
Showing 1 changed file with 0 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@

import jakarta.validation.Valid;
import lombok.RequiredArgsConstructor;
import lombok.extern.slf4j.Slf4j;
import site.youtogether.room.application.RoomService;
import site.youtogether.room.dto.ChangedRoomTitle;
import site.youtogether.room.dto.NewRoom;
Expand All @@ -31,14 +30,12 @@

@RestController
@RequiredArgsConstructor
@Slf4j
public class RoomController {

private final RoomService roomService;

@GetMapping("/rooms")
public ResponseEntity<ApiResponse<RoomList>> fetchRoomList(@PageableDefault Pageable pageable, @RequestParam(required = false) String keyword) {
log.info("넘어온 keyword:{}", keyword);
RoomList roomList = roomService.fetchAll(pageable, keyword);

return ResponseEntity.ok()
Expand Down

0 comments on commit 1cd32cc

Please sign in to comment.