Fix log level of a message

This commit is contained in:
Jose Gracia 2024-01-26 11:47:25 +01:00
parent c2bf0cb74b
commit 2944f3cae9

View file

@ -26,7 +26,7 @@ def get_Nranks(fn):
try: try:
nranks = int(result.stdout) nranks = int(result.stdout)
except ValueError: except ValueError:
logging.info("Cannot infer nranks from '@ MPI Task Assignment'.") logging.warning("Cannot infer nranks from '@ MPI Task Assignment'.")
nranks = None nranks = None
return {"ranks": nranks} return {"ranks": nranks}