Skip to content

Commit

Permalink
change spring logger level
Browse files Browse the repository at this point in the history
  • Loading branch information
JakimLi committed Dec 26, 2018
1 parent 59b77f9 commit b4bfa88
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ Feature: Http feature
{"username": "jakim", "age": 18}
"""
* send: POST
* status: 201
* status: 200
* verify: '$.id'='auto-generated'
* verify: '$.username'='jakim'
* verify: '$.age'=18
Expand Down
2 changes: 2 additions & 0 deletions pandaria-db/src/test/resources/application.properties
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,5 @@ spring.datasource.url=jdbc:mysql://localhost:3306/pandaria?useSSL=false&allowMul
spring.datasource.username=root
spring.datasource.password=password
spring.datasource.driver-class-name=com.mysql.jdbc.Driver

logging.level.org.springframework=ERROR
4 changes: 3 additions & 1 deletion pandaria-mongo/src/test/resources/application.properties
Original file line number Diff line number Diff line change
@@ -1,2 +1,4 @@
mongo.db.name=test
mongo.db.connection=mongodb://root:password@localhost:27017
mongo.db.connection=mongodb://root:password@localhost:27017

logging.level.org.springframework=ERROR
2 changes: 2 additions & 0 deletions pandaria-ui/src/test/resources/application.properties
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,5 @@ chrome.driver=/Work/chromedriver

#by default, chrome drive launch chrome at the default installed location for each platform, but you can change it.
chrome.location=

logging.level.org.springframework=ERROR

0 comments on commit b4bfa88

Please sign in to comment.