ember.js

How to disable deprecation warnings in Ember.js?


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.


Solution

  • You can just do Ember.deprecate = function(){} in your application.js file and that should disable ember deprecation warnings.