We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 220dc92 commit afbd0e6Copy full SHA for afbd0e6
1 file changed
snakemake/scheduler.py
@@ -493,9 +493,11 @@ def job_selector_ilp(self, jobs):
493
import pulp
494
from pulp import lpSum
495
496
+ logger.debug("Selecting jobs to run using ILP solver.")
497
+
498
if len(jobs) == 1:
499
logger.debug(
- "Using greedy selector because only single job has to be scheduled."
500
+ "Switching to greedy selector because only one job has to be scheduled."
501
)
502
return self.job_selector_greedy(jobs)
503
@@ -674,6 +676,8 @@ def job_selector_greedy(self, jobs):
674
676
Args:
675
677
jobs (list): list of jobs
678
"""
679
+ logger.debug("Selecting jobs to run using greedy solver.")
680
681
with self._lock:
682
if not self.resources["_cores"]:
683
return set()
0 commit comments