You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by pi...@apache.org on 2023/01/12 00:04:42 UTC

[airflow] branch v2-5-test updated: Fix minor typo in taskflow.rst (#28656)

This is an automated email from the ASF dual-hosted git repository.

pierrejeambrun pushed a commit to branch v2-5-test
in repository https://gitbox.apache.org/repos/asf/airflow.git


The following commit(s) were added to refs/heads/v2-5-test by this push:
     new e68eac88c9 Fix minor typo in taskflow.rst (#28656)
e68eac88c9 is described below

commit e68eac88c93c8d360b6f408d44e375ebcfe50eea
Author: Mark H <06...@icloud.com>
AuthorDate: Fri Dec 30 12:05:25 2022 -1000

    Fix minor typo in taskflow.rst (#28656)
    
    Case change to match logging API. getlogger -> getLogger
    
    (cherry picked from commit 068886231ac0759d3ae9dd13fc2b2727d87b2f60)
---
 docs/apache-airflow/concepts/taskflow.rst | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/docs/apache-airflow/concepts/taskflow.rst b/docs/apache-airflow/concepts/taskflow.rst
index 7efa38b843..11554dabf4 100644
--- a/docs/apache-airflow/concepts/taskflow.rst
+++ b/docs/apache-airflow/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.