1
0
mirror of https://github.com/lensapp/lens.git synced 2025-05-20 05:10:56 +00:00

fix logging

Signed-off-by: Jim Ehrismann <jehrismann@mirantis.com>
This commit is contained in:
Jim Ehrismann 2021-10-27 11:43:55 -04:00
parent cb29a78302
commit 47efade1c6

View File

@ -82,8 +82,8 @@ class PortForward {
`${this.forwardPort ?? ""}:${this.port}`
];
logger.info("[PORT-FORWARD-ROUTE]: spawning", kubectlBin, args);
logger.info(`[PORT-FORWARD-ROUTE]: spawning ${kubectlBin} ${args.join(" ")}`);
this.process = spawn(kubectlBin, args, {
env: process.env
});