From 617c2d3dec0376cdcfba1a48f757df9114a9fd2f Mon Sep 17 00:00:00 2001 From: "Alex A. Naanou" Date: Mon, 27 Jun 2016 19:58:47 +0300 Subject: [PATCH] added warning... Signed-off-by: Alex A. Naanou --- ui (gen4)/lib/features.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/ui (gen4)/lib/features.js b/ui (gen4)/lib/features.js index baa7a65c..23b43d89 100755 --- a/ui (gen4)/lib/features.js +++ b/ui (gen4)/lib/features.js @@ -744,6 +744,9 @@ var FeatureSetProto = { } // check applicability... if(f.isApplicable && !f.isApplicable.call(that, obj)){ + // XXX not sure if this is the right place for this... + console.warn('Excluding unaplicable:', n, '(reccomended to exclude manually)') + unapplicable.push(n) return false }