Skip to content

Commit

Permalink
Use els branch for log.debug message.
Browse files Browse the repository at this point in the history
  • Loading branch information
koning committed May 24, 2024
1 parent 9185a01 commit 1d701f9
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions merlin/study/script_adapter.py
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,8 @@ def get_parallelize_command(self, procs, nodes=None, **kwargs):
if key not in self._cmd_flags:
if key not in self._ignored:
LOG.warning("'%s' is not supported in parallel command -- ommitted.", key)
LOG.debug("'%s' is not supported in parallel command -- ommitted.", key)
else:
LOG.debug("'%s' is not supported in parallel command -- ommitted.", key)
continue
if value:
args += [self._cmd_flags[key], f"{str(value)}"]
Expand Down Expand Up @@ -296,7 +297,8 @@ def get_parallelize_command(self, procs, nodes=None, **kwargs):
if key not in self._cmd_flags:
if key not in self._ignored:
LOG.warning("'%s' is not supported in parallel command -- ommitted.", key)
LOG.debug("'%s' is not supported in parallel command -- ommitted.", key)
else:
LOG.debug("'%s' is not supported in parallel command -- ommitted.", key)
continue

if key == "walltime":
Expand Down

0 comments on commit 1d701f9

Please sign in to comment.