Skip to content

Commit

Permalink
[BUGFIX beta] only logLibraryVersions in debug mode
Browse files Browse the repository at this point in the history
  • Loading branch information
GavinJoyce committed Jan 12, 2017
1 parent 5ea34e5 commit cbc35cc
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions packages/ember-application/lib/system/application.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@ import {
libraries,
isTesting,
get,
run
run,
runInDebug
} from 'ember-metal';
import {
Namespace,
Expand Down Expand Up @@ -339,7 +340,7 @@ const Application = Engine.extend({
}

registerLibraries();
logLibraryVersions();
runInDebug(() => logLibraryVersions());

// Start off the number of deferrals at 1. This will be decremented by
// the Application's own `boot` method.
Expand Down

0 comments on commit cbc35cc

Please sign in to comment.