From: Mike Taylor Date: Tue, 11 Feb 2014 16:18:00 +0000 (+0000) Subject: Separate out team-specific parts of mkws.debug_function() into inner X-Git-Tag: 1.0.0~1485 X-Git-Url: http://git.indexdata.com/?p=mkws-moved-to-github.git;a=commitdiff_plain;h=2b55e6d855f08eca88e5ea5a3a0975e125f21128 Separate out team-specific parts of mkws.debug_function() into inner function debug() (which is now an actual wrapper function rather than a mere alias). --- diff --git a/tools/htdocs/mkws.js b/tools/htdocs/mkws.js index c2dc405..df00102 100644 --- a/tools/htdocs/mkws.js +++ b/tools/htdocs/mkws.js @@ -185,19 +185,23 @@ function team($, teamName) { return; } - var now = $.now(); - var timestamp = ((now - m_debug_time.start)/1000).toFixed(3) + " (+" + ((now - m_debug_time.last)/1000).toFixed(3) + ") " - m_debug_time.last = now; - // you need to disable use strict at the top of the file!!! if (mkws.debug_level >= 3) { - console.log(timestamp + arguments.callee.caller); + console.log(arguments.callee.caller); } else if (mkws.debug_level >= 2) { - console.log(timestamp + ">>> called from function " + arguments.callee.caller.name + ' <<<'); + console.log(">>> called from function " + arguments.callee.caller.name + ' <<<'); } - console.log(m_teamName + ": " + timestamp + string); + console.log(string); } - var debug = mkws.debug_function; // local alias + + var debug = function (s) { + var now = $.now(); + var timestamp = ((now - m_debug_time.start)/1000).toFixed(3) + " (+" + ((now - m_debug_time.last)/1000).toFixed(3) + ") " + m_debug_time.last = now; + + mkws.debug_function(m_teamName + ": " + timestamp + s); + } + debug("start running MKWS"); m_sort = mkws_config.sort_default;