Is it just me, or is console.log() too much to ask for from HTML5 web workers?

I know that manipulating the DOM is blocked because it is potentially dangerous, but is there really any possibility that console.log() could be maliciously exploited by a multithreaded worker?

link|improve this question

76% accept rate
feedback

1 Answer

up vote 3 down vote accepted

Agreed things would be a lot nicer, but it's not too hard to hack up a primitive console.log using postMessage. David Flanagan has a nice wrapper here.

link|improve this answer
Nice wrapper indeed, but unfortunately the way it is implemented does not allow the use of jQuery.Hive. – ejang Sep 1 '11 at 0:49
1  
I would suggest to use Chrome dev tools (form 17+) - then you will get a nice option to debug your workers without the need to use console.log – Ido Green Dec 25 '11 at 9:16
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.