We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
This means that on a new Ember app using v3.0.0-beta.1 we see the following output for a debug build:
The cause is the boolean logic here:
ember.js/packages/ember-console/lib/index.js
Line 92 in bd7e62f
I believe it should be refactored to:
debug() { if (console.debug) { return console.debug(...arguments); // eslint-disable-line no-console } else { return console.info(...arguments); // eslint-disable-line no-console } },
The text was updated successfully, but these errors were encountered:
No branches or pull requests
This means that on a new Ember app using v3.0.0-beta.1 we see the following output for a debug build:
The cause is the boolean logic here:
ember.js/packages/ember-console/lib/index.js
Line 92 in bd7e62f
I believe it should be refactored to:
The text was updated successfully, but these errors were encountered: