application.yml
799 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
spring:
main:
web-application-type: none
banner-mode: 'off'
line.bot:
handler.enabled: false
logging:
level:
root: WARN
com.linecorp: ${log:INFO}
com.linecorp.bot.client.wire: ${wirelog:INFO}
pattern:
console: >-
%clr(%d{HH:mm:ss}){faint}
%clr(%5p)
%clr(-){faint}
%clr(%-20.20logger{19}){cyan}
%clr(:){faint}
%m%n%wEx
---
spring.profiles: debug
logging:
level:
root: DEBUG
com.linecorp: ${log:DEBUG}
com.linecorp.bot.client.wire: ${wirelog:DEBUG}
pattern:
console: >-
%clr(%d{yyyy-MM-dd HH:mm:ss.SSS}){faint}
%clr(${LOG_LEVEL_PATTERN:-%5p})
%clr(${PID:- }){magenta}
%clr(---){faint}
%clr([%15.15t]){faint}
%clr(%-40.40logger{39}){cyan}
%clr(:){faint}
%m%n%wEx