This should be fixed lately with issue 7036<http://code.google.com/p/fbug/issues/detail?id=7036>. You can try out Firebug 1.13a7<https://getfirebug.com/releases/firebug/1.13/firebug-1.13.0a7.xpi>to verify if your problem is gone there.
Sebastian On Saturday, December 28, 2013 6:11:07 PM UTC+1, Luca Coraggio wrote: > > I've a bad problem using Firebug and Firefox, both updated at last version. > > Considering that i've to keep trace of a value inside a function called > 60 time per second (60 FPS), i see that this value is not correctly > transcribed inside firebug console, and after a certai number of time it's > not reported anymore. > Take a look at this page. Open firebug and see what i mean > http://coranncreazioni.altervista.org/pagr%20flip/index.html > > This is the piece of code that should show console.log information. > > > setInterval( render, 1000 / 60 ); > > function render() > { > > // Reset all pixels in the canvas > context.clearRect( 0, 0, canvas.width, canvas.height ); > > for( var i = 0, len = flips.length; i < len; i++ ) > { > var flip = flips[i]; > > if( flip.dragging ) > { > flip.target = Math.max( Math.min( mouse.x / PAGE_WIDTH, 1 > ), -1 ); > } > console.log( flip.target) <---// there > .... > > > the "render" function is always active in all moments and in firebug i > could see alway an updated value... Instead it is not showed after a certai > number of milliseconds ! > > Is it a known issue? or simple firebug is not designed for this rule? > > -- You received this message because you are subscribed to the Google Groups "Firebug" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/firebug. To view this discussion on the web visit https://groups.google.com/d/msgid/firebug/552390d4-8405-4428-9278-d424684801ec%40googlegroups.com. For more options, visit https://groups.google.com/groups/opt_out.
