From 86b6046d55935792fba1393558494962b06238c2 Mon Sep 17 00:00:00 2001
From: jpoirier <jpoirier@grandlyon.com>
Date: Wed, 26 Jul 2023 09:57:32 +0200
Subject: [PATCH] fix: unexpected character in 'remove path' log

---
 back/src/shared/services/file.service.ts | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/back/src/shared/services/file.service.ts b/back/src/shared/services/file.service.ts
index 4b5f998..5c2d9ad 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);
-- 
GitLab