Github user mxmrlv commented on a diff in the pull request:

    https://github.com/apache/incubator-ariatosca/pull/117#discussion_r114761560
  
    --- Diff: aria/orchestrator/workflows/events_logging.py ---
    @@ -36,16 +36,15 @@ def _get_task_name(task):
     @events.start_task_signal.connect
     def _start_task_handler(task, **kwargs):
         # If the task has not implementation this is an empty task.
    -    if task.implementation:
    -        task.context.logger.debug('{name} 
{task.interface_name}.{task.operation_name} has no '
    -                                  
'implementation'.format(name=_get_task_name(task), task=task))
    -    else:
    -        task.context.logger.info('{name} 
{task.interface_name}.{task.operation_name} started...'
    -                                 .format(name=_get_task_name(task), 
task=task))
    +    suffix = 'started...' if task.implementation else 'has no 
implementation'
    +    task.context.logger.debug('{name} 
{task.interface_name}.{task.operation_name} {suffix}'
    --- End diff --
    
    task.imp -> info


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---

Reply via email to