소스 검색

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};