Skip to content

Commit

Permalink
fix(#36): 콘솔 출력 주석처리
Browse files Browse the repository at this point in the history
  • Loading branch information
kimhji committed Feb 6, 2025
1 parent 5a2a0b1 commit dd96a74
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/src/rss/ai/feed-ai.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ export class FeedAIService {
if (resLength > FeedAIService.limitLength || resLength <= 0) {
result = '요약 데이터가 유효하지 않습니다.';
}
console.log('응답 데이터:', result);
//console.log('응답 데이터:', result);
return result;
} catch (error) {
console.error('에러 발생:', error);
Expand Down

0 comments on commit dd96a74

Please sign in to comment.