Remove logging statements.

This commit is contained in:
Jonathan Puckey 2011-08-02 11:07:59 +02:00
parent 94a6860f7f
commit a9780374f2

View file

@ -437,13 +437,11 @@ var View = this.View = Base.extend(/** @lends View# */{
function exportFrame(param) {
count++;
if (view.onFrame) {
var then = new Date();
view.onFrame({
delta: frameDuration,
time: frameDuration * count,
count: count
});
console.log(new Date() - then, ' onFrame');
}
view.draw();
var filename = param.prefix + toPaddedString(count, 6) + '.png',