1
0
mirror of https://github.com/EDCD/EDMarketConnector.git synced 2025-04-13 07:47:14 +03:00

monitor: __navroute_retry(): be less noisy

No need to log at INFO for the retry counts, as this appears to be working,
make it DEBUG instead.

This was making the EDMC.py output needlessly noisy.
This commit is contained in:
Athanasius 2022-03-18 09:51:35 +00:00
parent c89548c2ba
commit 9f08b003c5
No known key found for this signature in database
GPG Key ID: AE3E527847057C7D

View File

@ -2236,7 +2236,7 @@ class EDLogs(FileSystemEventHandler): # type: ignore # See below
if self._navroute_retries_remaining == 0:
return False
logger.info(f'Navroute read retry [{self._navroute_retries_remaining}]')
logger.debug(f'Navroute read retry [{self._navroute_retries_remaining}]')
self._navroute_retries_remaining -= 1
if self._last_navroute_journal_timestamp is None: