Add "disabled by --link" note to certificate arg

This commit is contained in:
JK 2020-12-04 01:45:20 +00:00
parent 3612076b89
commit 0d53441950
1 changed files with 1 additions and 1 deletions

View File

@ -123,7 +123,7 @@ const main = async (args: DefaultedArgs): Promise<void> => {
if (args.cert) { if (args.cert) {
logger.info(` - Using certificate for HTTPS: ${humanPath(args.cert.value)}`) logger.info(` - Using certificate for HTTPS: ${humanPath(args.cert.value)}`)
} else { } else {
logger.info(" - Not serving HTTPS") logger.info(` - Not serving HTTPS ${args.link ? "(disabled by --link)" : ""}`)
} }
if (args["proxy-domain"].length > 0) { if (args["proxy-domain"].length > 0) {