Make Enemizer check log a debug level log

This commit is contained in:
Fabian Dill 2020-09-04 18:54:56 +02:00
parent 0bae6b9860
commit ac29101f2d
1 changed files with 1 additions and 1 deletions

2
Rom.py
View File

@ -183,7 +183,7 @@ def check_enemizer(enemizercli):
if lib.startswith("EnemizerLibrary/"):
version = lib.split("/")[-1]
version = tuple(int(element) for element in version.split("."))
logging.info(version)
logging.debug(f"Found Enemizer version {version}")
if version < (6, 2, 0):
raise Exception(
f"Enemizer found at {enemizercli} is outdated ({info}), please update your Enemizer. "