diff --git a/Picker.omnifocusjs/Resources/pick.js b/Picker.omnifocusjs/Resources/pick.js index 591389f..86a872f 100644 --- a/Picker.omnifocusjs/Resources/pick.js +++ b/Picker.omnifocusjs/Resources/pick.js @@ -37,6 +37,7 @@ // start with weights from tags let weight = this.tagWeightsForTask(task); if (!weight) { + console.log(`skipping ${task.name} because no tags matched.`); continue; } // tasks that are closer to their due date should be weighted higher, up diff --git a/Picker.omnifocusjs/Resources/pick.ts b/Picker.omnifocusjs/Resources/pick.ts index a282abf..566a6af 100644 --- a/Picker.omnifocusjs/Resources/pick.ts +++ b/Picker.omnifocusjs/Resources/pick.ts @@ -59,6 +59,7 @@ // start with weights from tags let weight = this.tagWeightsForTask(task); if (!weight) { + console.log(`skipping ${task.name} because no tags matched.`); continue; }