Configured Logging for Backend

This commit is contained in:
Maximilian Leopold 2019-05-13 15:50:19 +02:00
parent 8ba109427c
commit 9608f082ae
3 changed files with 10 additions and 2 deletions

View File

@ -69,6 +69,8 @@ dependencies {
testCompile group: 'junit', name: 'junit', version: '4.+'
}
node {

View File

@ -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(){

View File

@ -7,3 +7,9 @@ spring.jooq.sql-dialect=org.hibernate.dialect.MariaDBDialect
spring.jpa.hibernate.ddl-auto=update
spring.jpa.show-sql=true
debug=true
# logging level
logging.level.hhn.labsw.bugageocaching=DEBUG
logging.level.root=WARN