From d973058264bc519c8a1dbfcabecde590d8c37304 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ey=C3=BE=C3=B3r=20Magn=C3=BAsson?= Date: Fri, 7 Sep 2018 13:14:18 +0200 Subject: [PATCH] fix(call-command): print correct protocol --- garden-cli/src/commands/call.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/garden-cli/src/commands/call.ts b/garden-cli/src/commands/call.ts index a25077cf8d..afda77c4b4 100644 --- a/garden-cli/src/commands/call.ts +++ b/garden-cli/src/commands/call.ts @@ -122,7 +122,7 @@ export class CallCommand extends Command { const method = "get" const entry = ctx.log.info({ - msg: chalk.cyan(`Sending HTTP GET request to `) + url + "\n", + msg: chalk.cyan(`Sending ${matchedEndpoint.protocol.toUpperCase()} GET request to `) + url + "\n", entryStyle: EntryStyle.activity, })