diff --git a/back/src/shared/services/file.service.ts b/back/src/shared/services/file.service.ts
index 4b5f99890f8ce4f077a1ec0f454d4b34e1b11173..5c2d9ad517c65f4491aa5ae653e1a52f118f898d 100644
--- a/back/src/shared/services/file.service.ts
+++ b/back/src/shared/services/file.service.ts
@@ -58,7 +58,7 @@ export class FileService {
   public remove(path: string): void {
     const fullpath: string = join(this.configService.documentsDir, path);
 
-    this.logger.debug(`Removing path ${fullpath})`);
+    this.logger.debug(`Removing path ${fullpath}`);
 
     if (existsSync(fullpath)) {
       return removeSync(fullpath);