We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d2987fa commit 2a9d782Copy full SHA for 2a9d782
src/utils/setup-status.ts
@@ -80,7 +80,12 @@ export async function createSetupStatusTracker(
80
if (status !== newStatus) {
81
status = newStatus;
82
outputChannel.trace(
83
- `[setup-status] Status changed to ${JSON.stringify(statuses)}`,
+ `[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
+ })}`,
89
);
90
await emitter.emit(status);
91
}
0 commit comments