From b13bd2c0923566c92e18efd084cf705818e8732a Mon Sep 17 00:00:00 2001 From: Andrey Goncharov Date: Mon, 27 Jun 2022 03:49:04 -0700 Subject: [PATCH] Log supported plugins Summary: We frequently get support requests asking why a certain plugin is not enabled for an app. This diff makes it easy to reason which plugins are enabled on the device Differential Revision: D37381316 fbshipit-source-id: 148d6d8b6f51cb161eb625cabe0fa629b8a00cf5 --- desktop/flipper-frontend-core/src/AbstractClient.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/desktop/flipper-frontend-core/src/AbstractClient.tsx b/desktop/flipper-frontend-core/src/AbstractClient.tsx index 4cfe3a5cd..c87413348 100644 --- a/desktop/flipper-frontend-core/src/AbstractClient.tsx +++ b/desktop/flipper-frontend-core/src/AbstractClient.tsx @@ -126,6 +126,7 @@ export default abstract class AbstractClient extends EventEmitter { 'Fetch plugin timeout for ' + this.id, ); this.plugins = new Set(plugins); + console.info('AbstractClient.loadPlugins', this.query, plugins); return plugins; }