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

Move 'this is the GameVersion we found' logging to DEBUG

This quietens it for normal EDMC.py usage.
This commit is contained in:
Athanasius 2022-12-14 10:51:37 +00:00
parent 2ff04dd659
commit 79bbc8917f
No known key found for this signature in database
GPG Key ID: 772697E181BB2767

View File

@ -1710,7 +1710,7 @@ class EDLogs(FileSystemEventHandler): # type: ignore # See below
pass
else:
logger.info(f"Parsed {self.state['GameVersion']=} into {self.version_semantic=}")
logger.debug(f"Parsed {self.state['GameVersion']=} into {self.version_semantic=}")
self.is_beta = any(v in self.version.lower() for v in ('alpha', 'beta')) # type: ignore
except KeyError: