From 0d5344195000fd7f02c0ab6b463d06fa302860ce Mon Sep 17 00:00:00 2001 From: JK Date: Fri, 4 Dec 2020 01:45:20 +0000 Subject: [PATCH] Add "disabled by --link" note to certificate arg --- src/node/entry.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/node/entry.ts b/src/node/entry.ts index 9aa69a65..81f37bf6 100644 --- a/src/node/entry.ts +++ b/src/node/entry.ts @@ -123,7 +123,7 @@ const main = async (args: DefaultedArgs): Promise => { if (args.cert) { logger.info(` - Using certificate for HTTPS: ${humanPath(args.cert.value)}`) } else { - logger.info(" - Not serving HTTPS") + logger.info(` - Not serving HTTPS ${args.link ? "(disabled by --link)" : ""}`) } if (args["proxy-domain"].length > 0) {