I\'m trying to use console.log to put some logging into the javascript side of my program. I noticed, though, that unless the dev console is open in IE, JS basically stops worki
function log(log){ try{ console.log( log); }catch(err){} }