summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorIgnatzHome <ignatz@maschath.de>2018-05-20 09:57:40 +0200
committerIgnatzHome <ignatz@maschath.de>2018-05-20 09:57:40 +0200
commiteb859dac3a2e69fdc608c76af53881df0abb2ed5 (patch)
treeeb82b2e10795687cbdb92a57ebaac43d71838b6b
parent9ac1164440b70de6480d55a0814198aad5e6d779 (diff)
downloadwekan-eb859dac3a2e69fdc608c76af53881df0abb2ed5.tar.gz
wekan-eb859dac3a2e69fdc608c76af53881df0abb2ed5.tar.bz2
wekan-eb859dac3a2e69fdc608c76af53881df0abb2ed5.zip
More Debugging Logs
-rw-r--r--client/lib/filter.js4
1 files changed, 3 insertions, 1 deletions
diff --git a/client/lib/filter.js b/client/lib/filter.js
index 84b10648..5aae1b36 100644
--- a/client/lib/filter.js
+++ b/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};