-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.json
42 lines (42 loc) · 1.05 KB
/
config.json
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
42
{
"version": 1,
"disable_existing_loggers": false,
"formatters": {
"iso8601": {
"format": "%(asctime)s%(message)s",
"datefmt": "%Y-%m-%dT%H:%M:%S%z"
},
"jst": {
"()": "src.LocalTimeFormatter",
"fmt": "%(asctime)s%(message)s",
"datefmt": "%Y-%m-%dT%H:%M:%S.%03f%z",
"." :{
"time_zone": "Asia/Tokyo"
}
},
"utc": {
"()": "src.LocalTimeFormatter",
"fmt": "%(asctime)s%(message)s",
"datefmt": "%Y-%m-%dT%H:%M:%S.%03f%z",
"." :{
"time_zone": "GMT"
}
}
},
"handlers": {
"console1": {
"class": "logging.StreamHandler",
"level": "INFO",
"formatter": "jst"
}
},
"loggers": {
"SaliencyMapDemo": {
"level": "DEBUG",
"handlers": ["console1"]
}
},
"root": {
"level": "DEBUG"
}
}