Skip to content

Commit

Permalink
fix: 에러 메시지 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
fru1tworld committed Dec 3, 2024
1 parent a9caf66 commit b6b2994
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,15 @@ export const ERROR_MESSAGES = {
UPDATE_FAILED: '스페이스 업데이트에 실패하였습니다.',
INITIALIZE_FAILED: '스페이스가 초기화에 실패하였습니다.',
PARENT_NOT_FOUND: '부모 스페이스가 존재하지 않습니다.',
DELETE_FAILED: '노트 삭제에 실패하였습니다.',
},
NOTE: {
BAD_REQUEST: '잘못된 요청입니다.',
NOT_FOUND: '노트가 존재하지 않습니다.',
CREATION_FAILED: '노트 생성에 실패하였습니다.',
UPDATE_FAILED: '노트 업데이트에 실패하였습니다.',
INITIALIZE_FAILED: '노트가 초기화에 실패하였습니다.',
DELETE_FAILED: '노트 삭제에 실패하였습니다.',
},
SOCKET: {
INVALID_URL: '유효하지 않은 URL 주소입니다.',
Expand Down
15 changes: 9 additions & 6 deletions packages/backend/src/space/space.controller.ts
Original file line number Diff line number Diff line change
Expand Up @@ -167,13 +167,16 @@ export class SpaceController {
const result = await this.spaceService.deleteById(id);

if (!result) {
this.logger.error('스페이스 삭제 실패 - 스페이스를 찾을 수 없음', {
method: 'deleteSpace',
error: ERROR_MESSAGES.SPACE.NOT_FOUND,
id,
});
this.logger.error(
'스페이스 삭제 실패 - 스페이스 삭제에 실패하였습니다.',
{
method: 'deleteSpace',
error: ERROR_MESSAGES.SPACE.DELETE_FAILED,
id,
},
);
throw new HttpException(
ERROR_MESSAGES.SPACE.NOT_FOUND,
ERROR_MESSAGES.SPACE.DELETE_FAILED,
HttpStatus.NOT_FOUND,
);
}
Expand Down

0 comments on commit b6b2994

Please sign in to comment.