Skip to content

Commit

Permalink
Fix minor typo in taskflow.rst (#28656)
Browse files Browse the repository at this point in the history
Case change to match logging API. getlogger -> getLogger
  • Loading branch information
markhatch authored Dec 30, 2022
1 parent a4b86dc commit 0688862
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/apache-airflow/core-concepts/taskflow.rst
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ To use logging from your task functions, simply import and use Python's logging

.. code-block:: python
logger = logging.getlogger("airflow.task")
logger = logging.getLogger("airflow.task")
Every logging line created this way will be recorded in the task log.

Expand Down

0 comments on commit 0688862

Please sign in to comment.