Remove Flipper logs export menu

Summary:
Design doc: https://docs.google.com/document/d/1HLCFl46RfqG0o1mSt8SWrwf_HMfOCRg_oENioc1rkvQ/edit#

We have a universal export now. Why would we ask for logs only?

Reviewed By: passy

Differential Revision: D40553127

fbshipit-source-id: 674482e39746e789d70bf800daa5f021d83bb093
This commit is contained in:
Andrey Goncharov
2022-10-25 05:31:48 -07:00
committed by Facebook GitHub Bot
parent 2289d6c0e2
commit 14bdc87b11
2 changed files with 0 additions and 18 deletions

View File

@@ -613,13 +613,6 @@ export function canFileExport() {
return !!getRenderHostInstance().showSaveDialog;
}
export async function startFlipperLogsExport() {
const serializedLogs = exportLogs
.map((item) => JSON.stringify(item))
.join('\n');
await getRenderHostInstance().exportFile?.(serializedLogs);
}
async function startDeviceFlipperFolderExport() {
return await getRenderHostInstance().flipperServer.exec(
{timeout: 3 * 60 * 1000},