This is an automated email from the ASF dual-hosted git repository.
xddeng pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/airflow.git
The following commit(s) were added to refs/heads/main by this push:
new 068886231a Fix minor typo in taskflow.rst (#28656)
068886231a is described below
commit 068886231ac0759d3ae9dd13fc2b2727d87b2f60
Author: Mark H <[email protected]>
AuthorDate: Fri Dec 30 12:05:25 2022 -1000
Fix minor typo in taskflow.rst (#28656)
Case change to match logging API. getlogger -> getLogger
---
docs/apache-airflow/core-concepts/taskflow.rst | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/docs/apache-airflow/core-concepts/taskflow.rst
b/docs/apache-airflow/core-concepts/taskflow.rst
index 8cc87ee09b..540132aa38 100644
--- a/docs/apache-airflow/core-concepts/taskflow.rst
+++ b/docs/apache-airflow/core-concepts/taskflow.rst
@@ -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.