Configured Logging for Backend
This commit is contained in:
parent
8ba109427c
commit
9608f082ae
@ -68,6 +68,8 @@ dependencies {
|
||||
compile group: 'ch.qos.logback', name:'logback-core', version: '1.0.9'
|
||||
|
||||
testCompile group: 'junit', name: 'junit', version: '4.+'
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
|
||||
@ -59,7 +59,7 @@ public class Controller {
|
||||
@Autowired
|
||||
TeamInviteRepository teamInviteRepository;
|
||||
|
||||
private static final Logger logger = LoggerFactory.getLogger(Controller.class);
|
||||
private org.slf4j.Logger logger = org.slf4j.LoggerFactory.getLogger(Controller.class);
|
||||
|
||||
@PostConstruct
|
||||
public void init(){
|
||||
|
||||
@ -6,4 +6,10 @@ spring.datasource.driver-class-name=org.mariadb.jdbc.Driver
|
||||
spring.jooq.sql-dialect=org.hibernate.dialect.MariaDBDialect
|
||||
spring.jpa.hibernate.ddl-auto=update
|
||||
spring.jpa.show-sql=true
|
||||
debug=true
|
||||
debug=true
|
||||
|
||||
|
||||
# logging level
|
||||
logging.level.hhn.labsw.bugageocaching=DEBUG
|
||||
logging.level.root=WARN
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user