Use console.info to log uncaught exceptions

This commit is contained in:
Marco Castelluccio 2014-08-05 11:48:37 -07:00
Родитель 4b5b9cb7ad
Коммит 3d2f88082c
1 изменённых файлов: 1 добавлений и 0 удалений

Просмотреть файл

@ -129,6 +129,7 @@ Context.prototype.start = function(stopFrame) {
case VM.Pause:
return;
default:
console.info(e);
throw e;
}
}