Skip to content

Commit 6494293

Browse files
committed
chore: Logging _clearDirectory
1 parent 26d07ee commit 6494293

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/packages.ts

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -144,17 +144,18 @@ export class Packages {
144144
}
145145

146146
private async _extract(file: string, dest: string): Promise<string> {
147-
core.info(`Extracting ${file} to ${dest}`);
147+
core.info(`_extract: Extracting ${file} to ${dest}`);
148148
return tc.extractZip(file, dest);
149149
}
150150

151151
private async _download(filename: string): Promise<string> {
152152
const downloadPath = path.join(this._getTempDirectory(), filename);
153-
core.info(`Downloading ${this.baseUrl}/${filename} to ${downloadPath}`);
153+
core.info(`_download: Downloading ${this.baseUrl}/${filename} to ${downloadPath}`);
154154
return tc.downloadTool(`${this.baseUrl}/${filename}`, downloadPath);
155155
}
156156

157157
private async _clearDirectory(dirPath: string): Promise<void> {
158+
core.info(`_clearDirectory: Clearing ${dirPath}`);
158159
if (
159160
await fs
160161
.access(dirPath)

0 commit comments

Comments
 (0)