script to detect active console.log calls and mods to avoid false positives
[brisk.git] / web / myconsole.js
index 223abdc..170220a 100644 (file)
@@ -114,7 +114,7 @@ function log_walk(curtag)
     var ind = 0;
     var ancestor = curtag;
     do {
-        console.log(spcs("_", "+", ind)+" ["+curtag.tagName+"]  nodeType: "+curtag.nodeType+" inner: ["+curtag.innerHTML+"]");
+        console.log(spcs("_", "+", ind)+" ["+curtag.tagName+"]  nodeType: "+curtag.nodeType+" inner: ["+curtag.innerHTML+"]"); // OK
         if (curtag.firstChild != null && curtag.tagName != "TD") {
             ind += 2;
             curtag = curtag.firstChild;