-
Notifications
You must be signed in to change notification settings - Fork 25
/
logging.yaml
49 lines (38 loc) · 963 Bytes
/
logging.yaml
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
43
44
45
46
47
48
49
##
## Copyright 2024 Ocean Protocol Foundation
## SPDX-License-Identifier: Apache-2.0
##
version: 1
disable_existing_loggers: False
formatters:
simple:
format: "%(asctime)s %(name)s %(levelname)s %(message)s"
handlers:
console:
class: logging.StreamHandler
level: INFO
formatter: simple
stream: ext://sys.stdout
#a run will auto-create logs/out_<time>.txt; we don't need 'file' handlers
loggers:
pdr:
level: INFO
handlers: [console]
propagate: no
ohlcv_data_factory:
level: INFO
aimodel_data_factory:
level: INFO
sim_engine:
level: INFO
multisim_engine:
level: INFO
predictoor_agent:
level: INFO
trader_agent:
level: INFO
# for a full list of loggers:
# grep -r getLogger pdr_backend/* |grep -v Binary| sed -e 's/.*getLogger(\"//' | sed -e 's/\".*//' | uniq
root:
level: INFO
handlers: [console]