Skip to content
pgte edited this page Oct 2, 2010 · 4 revisions

Fugue won't start and it won't tell you your error?

If you suspect you are having an exception, you can add this to your app:

process.on('uncaughtException', function(excp) {
  console.log(excp.message);
  console.log(excp.stack);
});

This should print you the exception occurring.