Skip to content

Commit da6eb20

Browse files
committed
modify: console log 제거
1 parent cab238c commit da6eb20

File tree

2 files changed

+0
-4
lines changed

2 files changed

+0
-4
lines changed

src/repositories/post.repository.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -271,8 +271,6 @@ export class PostRepository {
271271
}
272272

273273
async findPostByPostId(postId: number, start?: string, end?: string) {
274-
console.log(start, end);
275-
276274
try {
277275
// 기본 쿼리 부분
278276
const baseQuery = `

src/services/post.service.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -87,8 +87,6 @@ export class PostService {
8787
const end = seoulNow.toISOString().split('T')[0];
8888
sevenDaysAgo.setDate(seoulNow.getDate() - 6);
8989

90-
// start, end 가 무조건 yyyy-mm-dd 로 넘어옴
91-
console.log(start, end);
9290
const posts = await this.postRepo.findPostByPostUUID(postUUUID, start, end);
9391

9492
const transformedPosts = this.transformPosts(posts);

0 commit comments

Comments
 (0)