diff --git a/composer/workflows/simple.py b/composer/workflows/simple.py index 6fe7a02ba3ef..1722eed9ec2e 100644 --- a/composer/workflows/simple.py +++ b/composer/workflows/simple.py @@ -47,7 +47,8 @@ # [END composer_simple_define_dag] # [START composer_simple_operators] def greeting(): - print('Hello World!') + import logging + logging.info('Hello World!') # An instance of an operator is called a task. In this case, the # hello_python task calls the "greeting" Python function.