We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e61ea79 commit 21f5ef2Copy full SHA for 21f5ef2
packages/server/src/cli.ts
@@ -310,8 +310,12 @@ const bold = (text: string | number): string | number => {
310
} else {
311
logger.warn("Launched without authentication.");
312
}
313
+ if (options.disableTelemetry) {
314
+ logger.info("Telemetry is disabled");
315
+ }
316
- const url = `http://localhost:${options.port}/`;
317
+ let schema = (options.noAuth || options.allowHttp) ? "http" : "https";
318
+ const url = `${schema}://localhost:${options.port}/`;
319
logger.info(" ");
320
logger.info("Started (click the link below to open):");
321
logger.info(url);
0 commit comments