Fixes & refactor

This commit is contained in:
Andras Schmelczer 2025-02-22 17:17:07 +00:00
parent e6eedab87d
commit f73b5ecb71
No known key found for this signature in database
GPG key ID: FC8F2C3D3D1A718C
4 changed files with 54 additions and 43 deletions

View file

@ -120,7 +120,7 @@ export class FileOperations {
}
public async remove(path: RelativePath): Promise<void> {
this.logger.debug(`Removing file: ${path}`);
this.logger.debug(`Deleting file: ${path}`);
return this.fs.delete(path);
}