Skip to content

Commit d33e2a5

Browse files
committed
Use logging instead of print
Signed-off-by: Fabrice Normandin <[email protected]>
1 parent 130ad4f commit d33e2a5

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

hydra_plugins/job_dependency_launcher/launcher.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,9 @@ def launch(
171171
executor._internal_update_parameters(**params)
172172

173173
self.test_job = executor.submit(CommandFunction(list(self.test_job_params)))
174-
print(f"Launched test job: {self.test_job.job_id} for command {self.test_job_params}")
174+
log.info(
175+
f"Launched test job: {self.test_job.job_id} for command {self.test_job_params}"
176+
)
175177

176178
# We already launched the test job.
177179
assert self.test_job is not None

0 commit comments

Comments
 (0)