Skip to content
Snippets Groups Projects
Commit 86b6046d authored by Jérôme POIRIER's avatar Jérôme POIRIER
Browse files

fix: unexpected character in 'remove path' log

parent 14d19928
No related branches found
No related tags found
No related merge requests found
Pipeline #67635 passed
...@@ -58,7 +58,7 @@ export class FileService { ...@@ -58,7 +58,7 @@ export class FileService {
public remove(path: string): void { public remove(path: string): void {
const fullpath: string = join(this.configService.documentsDir, path); const fullpath: string = join(this.configService.documentsDir, path);
this.logger.debug(`Removing path ${fullpath})`); this.logger.debug(`Removing path ${fullpath}`);
if (existsSync(fullpath)) { if (existsSync(fullpath)) {
return removeSync(fullpath); return removeSync(fullpath);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment