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

adding logging to see what's going on

Signed-off-by: Jim Ehrismann <jehrismann@mirantis.com>
This commit is contained in:
Jim Ehrismann 2021-10-27 10:59:47 -04:00
parent c4046f657a
commit 606e3aefd4

View File

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