diff --git a/src/dispatcher/plugins.js b/src/dispatcher/plugins.js index 84aadbe03..5f6e5532d 100644 --- a/src/dispatcher/plugins.js +++ b/src/dispatcher/plugins.js @@ -122,11 +122,6 @@ export const checkGK = (gatekeepedPlugins: Array) => ( const result = GK.get(plugin.gatekeeper); if (!result) { gatekeepedPlugins.push(plugin); - console.warn( - 'Plugin %s will be ignored as user is not part of the gatekeeper "%s".', - plugin.name, - plugin.gatekeeper, - ); } return result; };