-
Notifications
You must be signed in to change notification settings - Fork 327
/
Copy pathapplication.conf
41 lines (39 loc) · 980 Bytes
/
application.conf
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
40
41
## Launcher's application.conf
akka {
loggers = ["akka.event.slf4j.Slf4jLogger"]
logging-filter = "akka.event.slf4j.Slf4jLoggingFilter"
stdout-loglevel = "ERROR"
}
logging-service {
logger {
akka.actor = info
akka.event = error
akka.io = error
akka.stream = error
}
appenders = [
{
name = "socket"
hostname = "localhost"
hostname = ${?ENSO_LOGSERVER_PORT}
port = 6000
port = ${?ENSO_LOGSERVER_PORT}
},
{
name = "file",
pattern = "[%level{lowercase=true}] [%d{yyyy-MM-dd'T'HH:mm:ssXXX}] [%logger] %msg%n"
},
{
name = "console"
pattern = "[%level{lowercase=true}] [%d{yyyy-MM-dd'T'HH:mm:ssXXX}] [%logger] %msg%n%nopex"
}
]
default-appender = console
default-appender = ${?ENSO_APPENDER_DEFAULT}
log-to-file {
enable = true
enable = ${?ENSO_LOG_TO_FILE}
log-level = debug
log-level = ${?ENSO_LOG_TO_FILE_LOG_LEVEL}
}
}