diff --git a/desktop/flipper-frontend-core/src/AbstractClient.tsx b/desktop/flipper-frontend-core/src/AbstractClient.tsx index 5c4f34b15..4cae97e89 100644 --- a/desktop/flipper-frontend-core/src/AbstractClient.tsx +++ b/desktop/flipper-frontend-core/src/AbstractClient.tsx @@ -137,7 +137,10 @@ export default abstract class AbstractClient extends EventEmitter { console.warn('Failed to fetch plugin', e); } this.plugins = new Set(response?.plugins ?? []); - console.info('AbstractClient.loadPlugins', this.query, [...this.plugins]); + console.info( + `Received plugins from '${this.query.app}' on device '${this.query.device}'`, + [...this.plugins], + ); return this.plugins; }