From e61e98284578bdad85625ad7578531c6fb13c492 Mon Sep 17 00:00:00 2001 From: Mike Taylor Date: Wed, 30 Apr 2014 10:55:30 +0100 Subject: [PATCH] Comment out the addWidget logging. --- src/mkws-team.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/mkws-team.js b/src/mkws-team.js index 213b14b..ab53e94 100644 --- a/src/mkws-team.js +++ b/src/mkws-team.js @@ -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 + "'"); } } -- 1.7.10.4