From: Mike Taylor Date: Fri, 7 Feb 2014 14:54:16 +0000 (+0000) Subject: debug() function's output begins with team name. X-Git-Tag: 1.0.0~1502^2~22 X-Git-Url: http://sru.miketaylor.org.uk/?a=commitdiff_plain;h=19b2a343e753f81ec462873af0e87d1a971e8142;p=mkws-moved-to-github.git debug() function's output begins with team name. --- diff --git a/tools/htdocs/mkws.js b/tools/htdocs/mkws.js index 2d9b452..815eaa7 100644 --- a/tools/htdocs/mkws.js +++ b/tools/htdocs/mkws.js @@ -194,7 +194,7 @@ function team($, teamName) { } else if (mkws.debug_level >= 2) { console.log(timestamp + ">>> called from function " + arguments.callee.caller.name + ' <<<'); } - console.log(timestamp + string); + console.log(m_teamName + ": " + timestamp + string); } var debug = mkws.debug_function; // local alias debug("start running MKWS");