1
0
mirror of https://github.com/EDCD/EDMarketConnector.git synced 2025-04-15 08:40:34 +03:00

inara.py: put inara events trace logging under inara-events trace_on option

This commit is contained in:
norohind 2021-08-12 16:01:31 +03:00
parent 505692052e
commit 043fd4d826
Signed by: norohind
GPG Key ID: 01C3BECC26FB59E1

View File

@ -22,6 +22,7 @@ from companion import CAPIData
from config import applongname, appversion, config, debug_senders
from EDMCLogging import get_main_logger
from ttkHyperlinkLabel import HyperlinkLabel
import config as conf_module # Necessary to see the same config.trace_on as elsewhere
logger = get_main_logger()
@ -1491,7 +1492,9 @@ def new_worker():
]
}
logger.info(f'sending {len(data["events"])} events for {creds.cmdr}')
logger.trace(f'Events:\n{json.dumps(data)}\n')
if 'inara-events' in conf_module.trace_on:
logger.trace(f'Events:\n{json.dumps(data)}\n')
try_send_data(TARGET_URL, data)
time.sleep(WORKER_WAIT_TIME)