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 8784959 commit 0c912f6Copy full SHA for 0c912f6
src/commands/force/org/status.ts
@@ -61,6 +61,8 @@ export class OrgStatusCommand extends SfdxCommand {
61
});
62
63
lifecycle.on(SandboxEvents.EVENT_RESULT, async (results: ResultEvent) => {
64
+ const resultMsg = `Sandbox ${results.sandboxProcessObj.SandboxName}(${results.sandboxProcessObj.Id}) is ready for use.`;
65
+ this.ux.log(resultMsg);
66
const { data } = SandboxReporter.logSandboxProcessResult(results);
67
this.ux.styledHeader('Sandbox Org Status');
68
this.ux.table(data, {
0 commit comments