Remove logging when adding a widget to a team.
authorMike Taylor <mike@indexdata.com>
Thu, 15 May 2014 11:16:30 +0000 (12:16 +0100)
committerMike Taylor <mike@indexdata.com>
Thu, 15 May 2014 11:16:30 +0000 (12:16 +0100)
src/mkws-team.js

index 8b99685..a1f664a 100644 (file)
@@ -411,10 +411,8 @@ function team($, teamName) {
   that.addWidget = function(w) {
     if (m_widgets[w.type] === undefined) {
       m_widgets[w.type] = [ w ];
-      log("Added '" + w.type + "' widget to team '" + m_teamName + "'");
     } else {
       m_widgets[w.type].push(w);
-      log("Added '" + w.type + "' widget #" + m_widgets[w.type].length + "' to team '" + m_teamName + "'");
     }
   }