Skip to content

Commit

Permalink
Merge pull request #17398 from rwjblue/noisy-warnings
Browse files Browse the repository at this point in the history
[BUGFIX lts] Avoid console.trace for every Ember.warn
  • Loading branch information
rwjblue authored Dec 20, 2018
2 parents c52ea90 + 3e45eb9 commit 69d082e
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions packages/@ember/debug/lib/warn.ts
Original file line number Diff line number Diff line change
Expand Up @@ -58,9 +58,6 @@ if (DEBUG) {
registerHandler(function logWarning(message) {
/* eslint-disable no-console */
console.warn(`WARNING: ${message}`);
if (console.trace) {
console.trace();
}
/* eslint-enable no-console */
});

Expand Down

0 comments on commit 69d082e

Please sign in to comment.