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 479f828 commit 1002714Copy full SHA for 1002714
packages/devtools/src/index.ts
@@ -52,11 +52,14 @@ export class DevtoolsPlugin extends RuntimePlugin<DevtoolsPluginOptions> {
52
this.options.bypassAuthInDev ? undefined : this.options.credential,
53
);
54
55
- queueMicrotask(() =>
+ // TODO: come up with a better solution
56
+ // print this message after artificial delay
57
+ // to ensure it is easily visible
58
+ setTimeout(() => {
59
Logger.info(
60
`Devtools plugin started on port http://localhost:${this.options.port ?? DEFAULT_PORT}.`,
- ),
- );
61
+ );
62
+ }, 150);
63
}
64
65
public async deactivate(ctx: CommandKitPluginRuntime): Promise<void> {
0 commit comments