mirror of
https://github.com/cdr/code-server.git
synced 2025-12-06 08:27:17 +01:00
Report if using hashed-password from config
This commit is contained in:
parent
1b1440ffd2
commit
53dccbb5ca
1 changed files with 2 additions and 0 deletions
|
|
@ -144,6 +144,8 @@ export const runCodeServer = async (
|
||||||
logger.info(" - Using password from $PASSWORD")
|
logger.info(" - Using password from $PASSWORD")
|
||||||
} else if (args.usingEnvHashedPassword) {
|
} else if (args.usingEnvHashedPassword) {
|
||||||
logger.info(" - Using password from $HASHED_PASSWORD")
|
logger.info(" - Using password from $HASHED_PASSWORD")
|
||||||
|
} else if (args["hashed-password"]) {
|
||||||
|
logger.info(` - Using hashed-password from ${args.config}`)
|
||||||
} else {
|
} else {
|
||||||
logger.info(` - Using password from ${args.config}`)
|
logger.info(` - Using password from ${args.config}`)
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue