More explicit logging for widget-creation
[mkws-moved-to-github.git] / tools / htdocs / mkws.js
index b3cd04a..c506ccf 100644 (file)
@@ -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;