ember-debug-logger
ember-debug-logger copied to clipboard
An Ember addon for attaching debug logging to container-managed objects
Upgrade to ember-auto-import 2.x This should probably be a major version bump? This repo is apparently not set up for CI. But tests pass locally.
Does the debug helper compile to an empty function in production builds? If so the docs should say so. If not, that would be a nice feature. Better still, something...
Q: How difficult would it be to use `Ember.Logger.debug` instead of `this.debug`? Have not overwritten Ember core components before, and was hoping for a bit of guidance within the context...
I see in the base library you can with ENVIRONMENT variables... but do those translate into the ember plugin? `DEBUG_COLORS`
I have a component, I happily have this.debug("yay!"); inside of it. When I run the test for the component I see: Died on test #1 http://localhost:7357/assets/tests.js:1175:24 exports@http://localhost:7357/assets/vendor.js:140:37 requireModule@http://localhost:7357/assets/vendor.js:32:25 require@http://localhost:7357/assets/test-support.js:7124:14 loadModules@http://localhost:7357/assets/test-support.js:7116:21...
- You can now override the logger functions to hook into the instance loggers at runtime. - There are also 4 instance loggers available (debug, info, warn, and error). However,...