Skip to content

Commit

Permalink
Merge pull request #1431 from rwjblue/CALM-YOURSELF-IAGO
Browse files Browse the repository at this point in the history
Disable `LOG_RESOLVER` flag by default.
  • Loading branch information
abuiles committed Jul 22, 2014
2 parents 9a2289b + 9001d8c commit 2795b21
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 5 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Expand Up @@ -30,6 +30,7 @@
* [ENHANCEMENT] Add Git initialization to `ember new` command [#1369](https://github.com/stefanpenner/ember-cli/pull/1369)
* [ENHANCEMENT] Addons can export an object instead of a function [#1377](https://github.com/stefanpenner/ember-cli/pull/1377)
* [ENHANCEMENT] Addons will automatically load a generic addon constructor that includes app/vendor trees based on treesFor property if no main key is specified in package.json. [#1377](https://github.com/stefanpenner/ember-cli/pull/1377)
* [ENHANCEMENT] Disable `LOG_RESOLVER` flag to reduce console.log noise by default. [#1431](https://github.com/stefanpenner/ember-cli/pull/1431)

### 0.0.39

Expand Down
6 changes: 1 addition & 5 deletions blueprints/app/files/config/environment.js
Expand Up @@ -19,12 +19,8 @@ module.exports = function(environment) {
};

if (environment === 'development') {
// LOG_MODULE_RESOLVER is needed for pre-1.6.0
ENV.LOG_MODULE_RESOLVER = true;

ENV.APP.LOG_RESOLVER = true;
// ENV.APP.LOG_RESOLVER = true;
ENV.APP.LOG_ACTIVE_GENERATION = true;
ENV.APP.LOG_MODULE_RESOLVER = true;
// ENV.APP.LOG_TRANSITIONS = true;
// ENV.APP.LOG_TRANSITIONS_INTERNAL = true;
ENV.APP.LOG_VIEW_LOOKUPS = true;
Expand Down

0 comments on commit 2795b21

Please sign in to comment.