Przeglądaj źródła

More Debugging Logs

IgnatzHome 7 lat temu
rodzic
commit
eb859dac3a
1 zmienionych plików z 3 dodań i 1 usunięć
  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};