cpdean edited a comment on pull request #15599:
URL: https://github.com/apache/airflow/pull/15599#issuecomment-892692829
I don't think that I have, but I'm not sure. Here's the `logging` stanza
from my `airflow.cfg`. It was generated by whatever airflow does by default
when you first run it.
```
[logging]
# The folder where airflow should store its log files
# This path must be absolute
base_log_folder = $AIRFLOW_HOME/logs
# Airflow can store logs remotely in AWS S3, Google Cloud Storage or Elastic
Search.
# Set this to True if you want to enable remote logging.
remote_logging = False
# Users must supply an Airflow connection id that provides access to the
storage
# location.
remote_log_conn_id =
remote_base_log_folder =
encrypt_s3_logs = False
# Logging level
logging_level = WARN
# Logging level for Flask-appbuilder UI
fab_logging_level = WARN
# Logging class
# Specify the class that will specify the logging configuration
# This class has to be on the python classpath
# Example: logging_config_class =
my.path.default_local_settings.LOGGING_CONFIG
logging_config_class =
# Flag to enable/disable Colored logs in Console
# Colour the logs when the controlling terminal is a TTY.
colored_console_log = True
# Log format for when Colored logs is enabled
colored_log_format = [%%(blue)s%%(asctime)s%%(reset)s]
{%%(blue)s%%(filename)s:%%(reset)s%%(lineno)d}
%%(log_color)s%%(levelname)s%%(reset)s - %%(log_color)s%%(message)s%%(reset)s
colored_formatter_class =
airflow.utils.log.colored_log.CustomTTYColoredFormatter
# Format of Log line
log_format = [%%(asctime)s] {%%(filename)s:%%(lineno)d} %%(levelname)s -
%%(message)s
simple_log_format = %%(asctime)s %%(levelname)s - %%(message)s
# Log filename format
log_filename_template = {{ ti.dag_id }}/{{ ti.task_id }}/{{ ts }}/{{
try_number }}.log
log_processor_filename_template = {{ filename }}.log
dag_processor_manager_log_location =
$AIRFLOW_HOME/logs/dag_processor_manager/dag_processor_manager.log
# Name of handler to read task instance logs.
# Default to use task handler.
task_log_reader = task
```
In case it's relevant, I also have this in my `airflow.cfg`
```
[admin]
# UI to hide sensitive variable fields when set to True
hide_sensitive_variable_fields = True
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]