diff --git a/server/src/modules/file/services/uploadHandlers/local.handler.ts b/server/src/modules/file/services/uploadHandlers/local.handler.ts index 5c8b46d5..b760c920 100644 --- a/server/src/modules/file/services/uploadHandlers/local.handler.ts +++ b/server/src/modules/file/services/uploadHandlers/local.handler.ts @@ -21,7 +21,6 @@ export class LocalHandler implements FileUploadHandler { ) .split(sep) .join('/'); - console.log(filePath); const physicalPath = join(this.physicalRootPath, filePath); await fse.mkdir(dirname(physicalPath), { recursive: true }); const writeStream = createWriteStream(physicalPath);