diff --git a/src/service/BackupSyncService.ts b/src/service/BackupSyncService.ts index bf2beab1f..fbb2b3b9c 100644 --- a/src/service/BackupSyncService.ts +++ b/src/service/BackupSyncService.ts @@ -85,6 +85,9 @@ export class BackupSyncService { await this.unzip(fileLocation, 'data', destinationFolder); }), ); + logger.info( + `Zip backup '${fileLocation}' has been restored. HINT: You can remove this file if you want to reclaim the disk space for future use.`, + ); } private unzip(globalDestination: string, innerFolder: string, targetFolder: string): Promise {