Skip to content

Commit

Permalink
fix: 에러 메시지를 실제 구현에 맞게 변경, eslint 오류 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
yechan2468 committed Dec 5, 2023
1 parent 04e93bb commit df834ba
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { Inject, Injectable, InternalServerErrorException, Logger } from '@nestjs/common';
import { Inject, Injectable, Logger } from '@nestjs/common';
import { InjectRepository } from '@nestjs/typeorm';
import { WINSTON_MODULE_PROVIDER } from 'nest-winston';
import { Repository } from 'typeorm';
Expand Down Expand Up @@ -95,7 +95,7 @@ export class FilesystemService {
try {
fs.rmSync(baseDirectory, { recursive: true });
} catch (e) {
this.logger.warn(`코드 실행 ${baseDirectory}를 삭제하는 데 실패했습니다`);
this.logger.warn(`코드 실행 ${baseDirectory}를 삭제하는 데 실패했습니다`);
}
}

Expand Down

0 comments on commit df834ba

Please sign in to comment.