Skip to content

Commit

Permalink
chore: Slf4j postService
Browse files Browse the repository at this point in the history
  • Loading branch information
shinheekim committed Aug 5, 2024
1 parent 96716ad commit 0559d6f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
import net.skhu.likelion12thteam03be.post.api.dto.response.PostInfoResDto;
import net.skhu.likelion12thteam03be.post.api.dto.response.PostListResDto;
import net.skhu.likelion12thteam03be.post.application.PostService;
import net.skhu.likelion12thteam03be.post.domain.Post;
import org.springframework.http.HttpStatus;
import org.springframework.http.MediaType;
import org.springframework.http.ResponseEntity;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
package net.skhu.likelion12thteam03be.post.application;

import lombok.RequiredArgsConstructor;
import lombok.extern.slf4j.Slf4j;
import net.skhu.likelion12thteam03be.category.domain.Category;
import net.skhu.likelion12thteam03be.category.domain.repository.CategoryRepository;
import net.skhu.likelion12thteam03be.location.domain.Location;
Expand Down Expand Up @@ -28,6 +29,7 @@
import java.util.Optional;
import java.util.stream.Collectors;

@Slf4j
@Service
@Transactional(readOnly = false)
@RequiredArgsConstructor
Expand Down

0 comments on commit 0559d6f

Please sign in to comment.