You can always print it yourself. (I know this is not the answer you wanted.)
,
<div id="debug"></div>
.
:
function log(str) {
$('#debug').append(str);
}
javascript, :
function myFunc(foo, bar, baz) {
log("myFunc called with ("+foo+", "+bar+", "+baz+")<br/>");
}
, ().