Output statements #12914
-
Hello Team, I have installed Airflow 1.10.12 in my local (windows) Ubuntu. The http://localhost:8081/admin displays my custom sample DAG written and is executing as well. Can you please guide me where can I view the output of the operator like "echo"/"print" statements in the admin screen ? Below is the code The DAG object; we'll need this to instantiate a DAGfrom airflow import DAG Operators; we need this to operate!from airflow.operators.bash_operator import BashOperator with DAG('pipeline_dag', start_date=datetime(2016, 1, 1)) as dag: |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Found the solution to this, we need to traverse to the dir from $AIRFLOW_HOME till we get 1.log file and it is visible there. |
Beta Was this translation helpful? Give feedback.
Found the solution to this, we need to traverse to the dir from $AIRFLOW_HOME till we get 1.log file and it is visible there.