diff --git a/core/modules/filters/math.js b/core/modules/filters/math.js index 77e9438b3..3764f6725 100644 --- a/core/modules/filters/math.js +++ b/core/modules/filters/math.js @@ -207,9 +207,6 @@ function makeNumericBinaryOperator(fnCalc) { var result = [], numOperand = $tw.utils.parseNumber(operator.operand); source(function(tiddler,title) { - if(typeof title !== "string") { - console.log("YES!") - } result.push(fnCalc($tw.utils.parseNumber(title),numOperand)); }); return result; diff --git a/core/modules/utils/utils.js b/core/modules/utils/utils.js index 1eff82c71..8a2b6d254 100644 --- a/core/modules/utils/utils.js +++ b/core/modules/utils/utils.js @@ -1020,7 +1020,6 @@ exports.filterItemToObject = function(value,options) { case "undefined": return defaultValue; case "object": - console.log("Got an object!") return value; case "boolean": return value;