summaryrefslogtreecommitdiff
path: root/taskflow/patterns
diff options
context:
space:
mode:
authorJoshua Harlow <harlowja@yahoo-inc.com>2013-08-02 10:44:40 -0700
committerJoshua Harlow <harlowja@yahoo-inc.com>2013-08-02 10:44:55 -0700
commitefb70d7b33bb513ac049fa75467e4cf7d80077ce (patch)
tree26e7165e084a49d991cb8605c131a5e342064324 /taskflow/patterns
parent112d8664f4dc4066e7a590d74942b8c40dc2f397 (diff)
downloadtaskflow-efb70d7b33bb513ac049fa75467e4cf7d80077ce.tar.gz
Quiet the provider linking.
The log output actually seems to be less useful when this is integrated into cinder than I thought it would be so lets turn it off. Change-Id: I2832f6bc9153153fcf6e76e65d8430ba536539e8
Diffstat (limited to 'taskflow/patterns')
-rw-r--r--taskflow/patterns/linear_flow.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/taskflow/patterns/linear_flow.py b/taskflow/patterns/linear_flow.py
index 96ef74e..6fcf703 100644
--- a/taskflow/patterns/linear_flow.py
+++ b/taskflow/patterns/linear_flow.py
@@ -75,7 +75,6 @@ class Flow(base.Flow):
# Ensure that some previous task provides this input.
who_provides = {}
task_requires = runner.requires
- LOG.debug("Finding providers of %s for %s", task_requires, runner)
for r in task_requires:
provider = None
for before_me in runner.runs_before:
@@ -83,7 +82,6 @@ class Flow(base.Flow):
provider = before_me
break
if provider:
- LOG.debug("Found provider of %s from %s", r, provider)
who_provides[r] = provider
# Ensure that the last task provides all the needed input for this
# task to run correctly.