Ember provides several configuration options that can help you debug problems
with your application.
Routing
Log router transitions
Views / Templates
Log view lookups
View all registered templates
Controllers
Log generated controller
Observers / Binding
See all observers for an object, key
Log object bindings
Miscellaneous
Turn on resolver resolution logging
This option logs all the lookups that are done to the console. Custom objects
you've created yourself have a tick, and Ember generated ones don't.
It's useful for understanding which objects Ember is finding when it does a lookup
and which it is generating automatically for you.
Dealing with deprecations
Implement an Ember.onerror hook to log all errors in production
Import the console
If you are using imports with Ember, be sure to import the console:
Errors within an RSVP.Promise
There are times when dealing with promises that it seems like any errors
are being 'swallowed', and not properly raised. This makes it extremely
difficult to track down where a given issue is coming from. Thankfully,
RSVP
has a solution for this problem built in.
You can provide an onerror
function that will be called with the error
details if any errors occur within your promise. This function can be anything,
but a common practice is to call console.assert
to dump the error to the
console.
Backburner has support for stitching the stacktraces together so that you can
track down where an erroring Ember.run.later
is being initiated from. Unfortunately,
this is quite slow and is not appropriate for production or even normal development.
To enable this mode you can set: