Created a proof of concept flipper-dump

Summary: Created a quick-and-dirty flipper-dump command, to verify that the stand alone flipper-server-core can do it's job without the Electron Flipper

Reviewed By: passy

Differential Revision: D31543516

fbshipit-source-id: ce8e37316ab5f09700421bcf1c7830266e02c999
This commit is contained in:
Michel Weststrate
2021-10-12 15:59:44 -07:00
committed by Facebook GitHub Bot
parent d88b28330a
commit 598bdeb12a
6 changed files with 341 additions and 9 deletions

View File

@@ -36,13 +36,13 @@ export interface Logger {
data?: any,
): void;
info(data: any, category: string): void;
info(...args: any[]): void;
warn(data: any, category: string): void;
warn(...args: any[]): void;
error(data: any, category: string): void;
error(...args: any[]): void;
debug(data: any, category: string): void;
debug(...args: any[]): void;
}
let instance: Logger | null = null;