1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2025-01-22 23:16:53 +00:00

Removed extraneous debugging call

This commit is contained in:
Jeremy Ruston 2011-12-09 12:27:00 +00:00
parent 318381a21b
commit 1e015c72dd

View File

@ -28,7 +28,6 @@ wikiTextMacros.executeMacros = function(tree,store,title) {
wikiTextMacros.executeMacro = function(macroNode,store,title) {
var macroInfo = wikiTextMacros.macros[macroNode.name];
console.error("Executing macro %s with params %s in tiddler %s",macroNode.name,0,title);
macroNode.output = [];
if(macroInfo) {
macroInfo.handler(macroNode,store,title);