Skip to content

Commit

Permalink
Improved logging
Browse files Browse the repository at this point in the history
  • Loading branch information
fboucquez committed Jan 18, 2021
1 parent 0a76f41 commit c4f2845
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/service/BackupSyncService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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<void> {
Expand Down

0 comments on commit c4f2845

Please sign in to comment.