From: Mike Taylor Date: Wed, 19 Mar 2014 17:57:56 +0000 (+0000) Subject: More explicit logging for widget-creation X-Git-Tag: 1.0.0~1298 X-Git-Url: http://git.indexdata.com/?p=mkws-moved-to-github.git;a=commitdiff_plain;h=db352294db725a7576d7f867b15a5cded97e248e More explicit logging for widget-creation --- diff --git a/tools/htdocs/mkws.js b/tools/htdocs/mkws.js index b3cd04a..c506ccf 100644 --- a/tools/htdocs/mkws.js +++ b/tools/htdocs/mkws.js @@ -160,19 +160,24 @@ function widget($, team, type, node) { if (type === 'Targets') { promoteTargets(); + team.debug("made targets widget(node=" + node + ")"); } else if (type === 'Stat') { promoteStat(); + team.debug("made stat widget(node=" + node + ")"); } else if (type === 'Termlists') { promoteTermlists(); + team.debug("made termlists widget(node=" + node + ")"); } else if (type === 'Pager') { promotePager(); + team.debug("made pager widget(node=" + node + ")"); } else if (type === 'Records') { promoteRecords(); + team.debug("made records widget(node=" + node + ")"); } else { // ### Handle other types here + team.debug("made unencapsulated widget(type=" + type + ", node=" + node + ")"); } - team.debug("made widget(type=" + type + ", node=" + node); return that;