From c6062c3d0a405be3c48ad2d3c8f69196571c88aa Mon Sep 17 00:00:00 2001 From: piousdeer <31318219+piousdeer@users.noreply.github.com> Date: Wed, 18 Nov 2020 23:41:32 +0700 Subject: [PATCH] Fix log message (#2331) --- 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 2774963f..b661b184 100644 --- a/src/node/entry.ts +++ b/src/node/entry.ts @@ -121,7 +121,7 @@ const main = async (args: DefaultedArgs): Promise => { } if (args.cert) { - logger.info(" - Using certificate for HTTPS: ${humanPath(args.cert.value)}") + logger.info(` - Using certificate for HTTPS: ${humanPath(args.cert.value)}`) } else { logger.info(" - Not serving HTTPS") }