We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 02f6288 commit cf63bbdCopy full SHA for cf63bbd
packages/server/src/cli.ts
@@ -315,10 +315,11 @@ const bold = (text: string | number): string | number => {
315
logger.warn("Documentation on securing your setup: https://github.com/cdr/code-server/blob/master/doc/security/ssl.md");
316
}
317
318
- if (!options.noAuth && !usingCustomPassword) {
+ if (!options.noAuth) {
319
logger.info(" ");
320
- logger.info(`Password:\u001B[1m ${password}`);
+ logger.info(usingCustomPassword ? "Using custom password." : `Password:\u001B[1m ${password}`);
321
} else {
322
+ logger.warn(" ");
323
logger.warn("Launched without authentication.");
324
325
if (options.disableTelemetry) {
0 commit comments