Separate out team-specific parts of mkws.debug_function() into inner
authorMike Taylor <mike@indexdata.com>
Tue, 11 Feb 2014 16:18:00 +0000 (16:18 +0000)
committerMike Taylor <mike@indexdata.com>
Tue, 11 Feb 2014 16:18:00 +0000 (16:18 +0000)
function debug() (which is now an actual wrapper function rather than
a mere alias).

tools/htdocs/mkws.js

index c2dc405..df00102 100644 (file)
@@ -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;