Skip to content

Commit

Permalink
fixed loglevel
Browse files Browse the repository at this point in the history
  • Loading branch information
manos committed Jun 1, 2017
1 parent 777e735 commit b354a6c
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 3 deletions.
2 changes: 1 addition & 1 deletion restdude-boot/src/main/resources/application.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ logging:
com.yahoo.elide.core: WARN
org.springframework: WARN
springfox.documentation.schema.property.CachingModelPropertiesProvider: ERROR
com.restdude: debug
com.restdude: WARN
# test: debug
# mdd: WARN
# jsonapi: WARN
Expand Down
2 changes: 1 addition & 1 deletion restdude-boot/src/test/resources/logback.xml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
<!-- <level pathFragment="debug" /> -->

<logger name="com.restdude.test">
<level value="debug"/>
<level value="warn"/>
</logger>

<logger name="com.restdude.domain.error">
Expand Down
2 changes: 1 addition & 1 deletion restdude-client-ember/config/deploy.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* jshint node: true */
/* jshint node: true */

module.exports = function(deployTarget) {
deployTarget || (deployTarget = 'dev');
Expand Down
5 changes: 5 additions & 0 deletions restdude-client-ember/config/environment.js
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,11 @@ module.exports = function (environment) {
ENV.APP.LOG_TRANSITIONS_INTERNAL = true;
ENV.APP.LOG_VIEW_LOOKUPS = true;
}

else if (environment === 'production') {
ENV.baseURL = '/project-name';
ENV.locationType = 'hash';
}
else if (environment === 'test') {
// Testem prefers this...
ENV.locationType = 'none';
Expand Down

0 comments on commit b354a6c

Please sign in to comment.