More configs refactor

Now in the broker config file are the log configs for cryptofeed.
max_pain_deribit
Nelson Torres 2024-12-07 11:15:43 -03:00
parent f31d868a55
commit 3295303e37
1 changed files with 6 additions and 6 deletions

View File

@ -234,16 +234,16 @@ def get_config() -> dict[str, Any]:
)
conf_option = section.get('option', {})
conf_log = conf_option.get('log', {})
return {
'deribit': {
'key_id': conf_option.get('api_key'),
'key_secret': conf_option.get('api_secret'),
'key_id': conf_option['key_id'],
'key_secret': conf_option['key_secret'],
},
'log': {
'filename': 'feedhandler.log',
'level': 'DEBUG',
'disabled': True,
'filename': conf_log['filename'],
'level': conf_log['level'],
'disabled': conf_log['disabled'],
}
}