diff --git a/plugins/edsm.py b/plugins/edsm.py index 9d68952c..689b4b4f 100644 --- a/plugins/edsm.py +++ b/plugins/edsm.py @@ -554,11 +554,14 @@ def worker() -> None: if any(p for p in pending if p['event'] in ('CarrierJump', 'FSDJump', 'Location', 'Docked')): data_elided = data.copy() data_elided['apiKey'] = '' - logger.trace("pending has at least one of " - "('CarrierJump', 'FSDJump', 'Location', 'Docked')" - " Attempting API cal...") + logger.trace( + "pending has at least one of " + "('CarrierJump', 'FSDJump', 'Location', 'Docked')" + " Attempting API call with the following events:" + ) for p in pending: + logger.trace(f"Event: {p!r}") if p['event'] in ('Location'): logger.trace('Attempting API call for "Location" event with timestamp: ' f'{p["timestamp"]}')