diff --git a/editions/tw5.com/tiddlers/macros/if-macro.js b/editions/tw5.com/tiddlers/macros/if-macro.js index b91f2ad8a..6c902ed65 100644 --- a/editions/tw5.com/tiddlers/macros/if-macro.js +++ b/editions/tw5.com/tiddlers/macros/if-macro.js @@ -20,7 +20,6 @@ exports.params = [ exports.run = function(cond, then, elze) { then = then || ""; elze = elze || ""; -console.log('Condition:', cond); return cond ? then : elze; };