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

Remove console logs

Signed-off-by: Sebastian Malton <sebastian@malton.name>
This commit is contained in:
Sebastian Malton 2022-10-18 12:56:12 -07:00
parent ea603c734e
commit 78b05baba2
2 changed files with 0 additions and 3 deletions

View File

@ -27,8 +27,6 @@ const shellApiRequestInjectable = getInjectable({
const nodeName = searchParams.get("node");
const shellToken = searchParams.get("shellToken");
console.log("got shell api request", { tabId, clusterId: cluster?.id, nodeName });
if (!tabId || !cluster || !shellApiAuthenticator.authenticate(cluster.id, tabId, shellToken)) {
socket.write("Invalid shell request");
socket.end();

View File

@ -222,7 +222,6 @@ export abstract class ShellSession {
this.running = true;
shellProcess.onData(data => {
console.log("sending", { data });
this.send({ type: TerminalChannels.STDOUT, data });
});
shellProcess.onExit(({ exitCode }) => {