Skip to content

Commit

Permalink
Minor update to logger message
Browse files Browse the repository at this point in the history
  • Loading branch information
ppinchuk committed Nov 4, 2023
1 parent 6ec7206 commit 33b6d15
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions sup3r/utilities/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -240,7 +240,7 @@ def kickoff_slurm_job(
else:
job_info = f"{module_name}"
if pipeline_step != module_name:
job_info = f"{job_info} (Pipeline Step {pipeline_step!r})"
job_info = f"{job_info} (pipeline step {pipeline_step!r})"
logger.info(
f'Running sup3r {job_info} on SLURM with node '
f'name "{name}".'
Expand Down Expand Up @@ -318,7 +318,7 @@ def kickoff_local_job(cls, module_name, ctx, cmd, pipeline_step=None):
else:
job_info = f"{module_name}"
if pipeline_step != module_name:
job_info = f"{job_info} (Pipeline Step {pipeline_step!r})"
job_info = f"{job_info} (pipeline step {pipeline_step!r})"
logger.info(
f'Running sup3r {job_info} locally with job '
f'name "{name}".'
Expand Down

0 comments on commit 33b6d15

Please sign in to comment.