Log python version at startup.

This commit is contained in:
Dan Albert 2021-05-13 19:16:54 -07:00
parent 4415429661
commit 3c5f1f7c4b

View File

@ -223,6 +223,8 @@ def lint_weapon_data() -> None:
def main(): def main():
logging_config.init_logging(VERSION) logging_config.init_logging(VERSION)
logging.debug("Python version %s", sys.version)
game: Optional[Game] = None game: Optional[Game] = None
args = parse_args() args = parse_args()