浏览代码

More Debugging Logs

IgnatzHome 7 年之前
父节点
当前提交
eb859dac3a
共有 1 个文件被更改,包括 3 次插入1 次删除
  1. 3 1
      client/lib/filter.js

+ 3 - 1
client/lib/filter.js

@@ -155,11 +155,13 @@ class AdvancedFilter {
 
   _arrayToSelector(commands)
   {
-    console.log(commands);
+    console.log('Parts: ', commands);
     try {
       //let changed = false;
       this._processConditions(commands);
+      console.log('Conditions: ', commands);
       this._processLogicalOperators(commands);
+      console.log('Operator: ', commands);
     }
     catch (e){return { $in: [] };}
     return {$or: commands};