Merge pull request #484 from yaotti/show-stack-traces-for-boot-failure

Print stack traces when starting app failed in addition to a dialog
This commit is contained in:
Cheng Zhao 2014-07-21 13:30:59 +08:00
Родитель b29ab48032 6bfa69ceda
Коммит a0bf74b9df
1 изменённых файлов: 1 добавлений и 0 удалений

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

@ -34,6 +34,7 @@ if (argv._.length > 0) {
} catch(e) {
if (e.code == 'MODULE_NOT_FOUND') {
app.focus();
console.error(e.stack);
dialog.showMessageBox({
type: 'warning',
buttons: ['OK'],