This is an automated email from the ASF dual-hosted git repository.
potiuk pushed a commit to branch v2-11-test
in repository https://gitbox.apache.org/repos/asf/airflow.git
The following commit(s) were added to refs/heads/v2-11-test by this push:
new e2b339652a9 Fix root logger level cache invalidation in
LoggerMutationHelper (#61644)
e2b339652a9 is described below
commit e2b339652a919314fbdf53f0fc8c66374fd2d166
Author: 김서인 <[email protected]>
AuthorDate: Mon Feb 9 09:59:55 2026 +0900
Fix root logger level cache invalidation in LoggerMutationHelper (#61644)
---
airflow/cli/commands/task_command.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/airflow/cli/commands/task_command.py
b/airflow/cli/commands/task_command.py
index 6e0fc80fbb3..d8a96e58102 100644
--- a/airflow/cli/commands/task_command.py
+++ b/airflow/cli/commands/task_command.py
@@ -794,7 +794,7 @@ class LoggerMutationHelper:
for h in self.handlers:
if h not in logger.handlers:
logger.addHandler(h)
- logger.level = self.level
+ logger.setLevel(self.level)
if logger is not logging.getLogger():
logger.propagate = self.propagate