Do not show warnings for unhandled messages

Summary: Flipper receives a lot of messages which cannot be handled when plugins unbundled. Showing them as warnings is un-actionable with such big amount, so I disabled them.

Reviewed By: mweststrate

Differential Revision: D25557790

fbshipit-source-id: 1a0bc3df2848b194b72ea6d775ffabe416672fee
This commit is contained in:
Anton Nikolaev
2020-12-15 09:28:58 -08:00
committed by Facebook GitHub Bot
parent 3d6afdb529
commit 31ace3bd09

View File

@@ -487,7 +487,7 @@ export default class Client extends EventEmitter {
} }
} }
} }
if (!handled) { if (!handled && !isProduction()) {
console.warn(`Unhandled message ${params.api}.${params.method}`); console.warn(`Unhandled message ${params.api}.${params.method}`);
} }
} }