Skip to content

Commit 165481d

Browse files
committed
Demote srun warning to a debug message
1 parent 46510a9 commit 165481d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

reframe/core/launchers/mpi.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,12 +33,12 @@ def __init__(self):
3333
if slurm_version < semver.VersionInfo(22, 5, 0):
3434
self.use_cpus_per_task = False
3535
else:
36-
getlogger().warning(
36+
getlogger().debug(
3737
'could not get version of Slurm, --cpus-per-task will be '
3838
'set according to the num_cpus_per_task attribute'
3939
)
4040
except Exception:
41-
getlogger().warning(
41+
getlogger().debug(
4242
'could not get version of Slurm, --cpus-per-task will be set '
4343
'according to the num_cpus_per_task attribute'
4444
)

0 commit comments

Comments
 (0)