Skip to content

Commit 2a9d782

Browse files
committed
Add file trackers status to status change log
1 parent d2987fa commit 2a9d782

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

src/utils/setup-status.ts

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,12 @@ export async function createSetupStatusTracker(
8080
if (status !== newStatus) {
8181
status = newStatus;
8282
outputChannel.trace(
83-
`[setup-status] Status changed to ${JSON.stringify(statuses)}`,
83+
`[setup-status] Status changed to ${JSON.stringify({
84+
...statuses,
85+
awsProfileTracker: awsProfileTracker.status() ?? "undefined",
86+
authTracker: localStackAuthenticationTracker.status() ?? "undefined",
87+
licenseTracker: licenseTracker.status() ?? "undefined",
88+
})}`,
8489
);
8590
await emitter.emit(status);
8691
}

0 commit comments

Comments
 (0)