From df834ba6477a8f2ee7f724c17bb95395a6f0023d Mon Sep 17 00:00:00 2001 From: Yechan Lee Date: Mon, 4 Dec 2023 23:31:02 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20=EC=97=90=EB=9F=AC=20=EB=A9=94=EC=8B=9C?= =?UTF-8?q?=EC=A7=80=EB=A5=BC=20=EC=8B=A4=EC=A0=9C=20=EA=B5=AC=ED=98=84?= =?UTF-8?q?=EC=97=90=20=EB=A7=9E=EA=B2=8C=20=EB=B3=80=EA=B2=BD,=20eslint?= =?UTF-8?q?=20=EC=98=A4=EB=A5=98=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../src/score/services/filesystem.service.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/be/algo-with-me-score/src/score/services/filesystem.service.ts b/be/algo-with-me-score/src/score/services/filesystem.service.ts index e27fec2..e5b6d23 100644 --- a/be/algo-with-me-score/src/score/services/filesystem.service.ts +++ b/be/algo-with-me-score/src/score/services/filesystem.service.ts @@ -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'; @@ -95,7 +95,7 @@ export class FilesystemService { try { fs.rmSync(baseDirectory, { recursive: true }); } catch (e) { - this.logger.warn(`코드 실행 후 ${baseDirectory}를 삭제하는 데 실패했습니다`); + this.logger.warn(`코드 실행 전 ${baseDirectory}를 삭제하는 데 실패했습니다`); } }