diff options
| author | Joshua Harlow <harlowja@gmail.com> | 2015-12-17 22:38:31 -0800 |
|---|---|---|
| committer | Joshua Harlow <harlowja@gmail.com> | 2015-12-17 22:39:14 -0800 |
| commit | 522ea984891b4cf1cac304bebb0d4c1f38a6b0ea (patch) | |
| tree | 782b14eb269f1f6d17219f7f33941aaacaf72cb4 /taskflow/engines/action_engine/engine.py | |
| parent | cf99c89e22e0d0cb0a75d60881c652bd023b4d0b (diff) | |
| download | taskflow-522ea984891b4cf1cac304bebb0d4c1f38a6b0ea.tar.gz | |
Move all internal blather usage/calls to trace usage/calls
Change-Id: I415a81d3b6b15b17a9a91cc2a0681c159172a4e1
Diffstat (limited to 'taskflow/engines/action_engine/engine.py')
| -rw-r--r-- | taskflow/engines/action_engine/engine.py | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/taskflow/engines/action_engine/engine.py b/taskflow/engines/action_engine/engine.py index 1a32b2e..c65da34 100644 --- a/taskflow/engines/action_engine/engine.py +++ b/taskflow/engines/action_engine/engine.py @@ -329,13 +329,13 @@ class ActionEngine(base.Engine): # flow/task provided or storage provided, if there are still missing # dependencies then this flow will fail at runtime (which we can avoid # by failing at validation time). - if LOG.isEnabledFor(logging.BLATHER): + if LOG.isEnabledFor(logging.TRACE): execution_graph = self._compilation.execution_graph - LOG.blather("Validating scoping and argument visibility for" - " execution graph with %s nodes and %s edges with" - " density %0.3f", execution_graph.number_of_nodes(), - execution_graph.number_of_edges(), - nx.density(execution_graph)) + LOG.trace("Validating scoping and argument visibility for" + " execution graph with %s nodes and %s edges with" + " density %0.3f", execution_graph.number_of_nodes(), + execution_graph.number_of_edges(), + nx.density(execution_graph)) missing = set() # Attempt to retain a chain of what was missing (so that the final # raised exception for the flow has the nodes that had missing |
