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.
It's always good to consider deprecations, but if you want to just turn them off entirely add the following 2 lines to your main app.js file.
Ember.deprecate = function(){};
Ember.warn = function(i){};
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With