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

Remove get-logs telemetry event (#6296)

Signed-off-by: Juho Heikka <juho.heikka@gmail.com>

Signed-off-by: Juho Heikka <juho.heikka@gmail.com>
This commit is contained in:
Juho Heikka 2022-09-29 10:48:22 +02:00 committed by GitHub
parent f594f961c6
commit e8f691ab0e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -100,10 +100,6 @@ const terminal = [
"create-terminal-tab", "create-terminal-tab",
]; ];
const logs = [
"get-logs",
];
const telemetryWhiteListForFunctionsInjectable = getInjectable({ const telemetryWhiteListForFunctionsInjectable = getInjectable({
id: "telemetry-white-list-for-functions", id: "telemetry-white-list-for-functions",
instantiate: () => [ instantiate: () => [
@ -114,7 +110,6 @@ const telemetryWhiteListForFunctionsInjectable = getInjectable({
...externalActions, ...externalActions,
...uiInteraction, ...uiInteraction,
...terminal, ...terminal,
...logs,
], ],
decorable: false, decorable: false,
}); });