Comment out the addWidget logging.
[mkws-moved-to-github.git] / src / mkws-team.js
index 213b14b..ab53e94 100644 (file)
@@ -430,13 +430,13 @@ function team($, teamName) {
     that.addWidget = function(w) {
         if (!m_widgets[w.type]) {
             m_widgets[w.type] = w;
-            log("Added '" + w.type + "' widget to team '" + m_teamName + "'");
+            //log("Added '" + w.type + "' widget to team '" + m_teamName + "'");
         } else if (typeof(m_widgets[w.type]) !== 'number') {
             m_widgets[w.type] = 2;
-            log("Added duplicate '" + w.type + "' widget to team '" + m_teamName + "'");
+            //log("Added duplicate '" + w.type + "' widget to team '" + m_teamName + "'");
         } else {
             m_widgets[w.type] += 1;
-            log("Added '" + w.type + "' widget #" + m_widgets[w.type] + "' to team '" + m_teamName + "'");
+            //log("Added '" + w.type + "' widget #" + m_widgets[w.type] + "' to team '" + m_teamName + "'");
         }
     }