diff options
author | IgnatzHome <ignatz@maschath.de> | 2018-05-20 10:11:46 +0200 |
---|---|---|
committer | IgnatzHome <ignatz@maschath.de> | 2018-05-20 10:11:46 +0200 |
commit | 778a29855f3beac7b3915c76ced5f149c5fe306e (patch) | |
tree | 9424ac0a255ee5e38eaa43bd9e11129f658037f6 /client/lib | |
parent | eb859dac3a2e69fdc608c76af53881df0abb2ed5 (diff) | |
download | wekan-778a29855f3beac7b3915c76ced5f149c5fe306e.tar.gz wekan-778a29855f3beac7b3915c76ced5f149c5fe306e.tar.bz2 wekan-778a29855f3beac7b3915c76ced5f149c5fe306e.zip |
stringify console.logs becouse of asynchrone nature from chromes interpretation... WAT
Diffstat (limited to 'client/lib')
-rw-r--r-- | client/lib/filter.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/client/lib/filter.js b/client/lib/filter.js index 5aae1b36..04edaa38 100644 --- a/client/lib/filter.js +++ b/client/lib/filter.js @@ -155,13 +155,13 @@ class AdvancedFilter { _arrayToSelector(commands) { - console.log('Parts: ', commands); + console.log('Parts: ', JSON.stringify(commands)); try { //let changed = false; this._processConditions(commands); - console.log('Conditions: ', commands); + console.log('Conditions: ', JSON.stringify(commands)); this._processLogicalOperators(commands); - console.log('Operator: ', commands); + console.log('Operator: ', JSON.stringify(commands)); } catch (e){return { $in: [] };} return {$or: commands}; |