-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathconfig.json
More file actions
32 lines (32 loc) · 829 Bytes
/
config.json
File metadata and controls
32 lines (32 loc) · 829 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
{
"logging": {
"enabled": true,
"level": "INFO",
"console": {
"enabled": true,
"level": "INFO",
"colored": true,
"format": "%(name)s:%(levelname)s: %(message)s"
},
"file": {
"enabled": true,
"level": "DEBUG",
"path": "jentic_agents/logs/actbots.log",
"format": "%(asctime)s - %(name)s - %(levelname)s - %(funcName)s:%(lineno)d - %(message)s",
"rotation": {
"enabled": true,
"max_bytes": 10485760,
"backup_count": 5
}
},
"performance": {
"enabled": true,
"slow_threshold_ms": 1000
},
"loggers": {
"jentic_agents": { "level": "DEBUG" },
"chromadb": { "level": "WARNING" },
"httpx": { "level": "WARNING" }
}
}
}