I've written up an application that uses Ember Data. It's passing all it's tests and running as expected, however, something is causing a repeated deprecation warning to be thrown into console.
I'd like to know how to disable these warnings in Ember.
You can just do Ember.deprecate = function(){}
in your application.js file and that should disable ember deprecation warnings.