rohan472000 commented on issue #31059:
URL: https://github.com/apache/airflow/issues/31059#issuecomment-1534847742
This issue could be related to the logging configuration of your Airflow
instance. By default, Airflow uses a logging level of WARNING, which means that
only log messages with severity levels of WARNING, ERROR, and CRITICAL will be
shown in the UI.
To check the logging configuration, you can go to your Airflow home
directory and open the `airflow.cfg` file. Look for the `[logging]` section and
check the values of the following parameters:
logging_level = WARNING
logging_config_class = log_config.LOGGING_CONFIG
If you want to see more log messages in the UI, you can set the logging
level to a lower value, such as INFO or DEBUG:
logging_level = INFO
Save the changes to the `airflow.cfg` file and restart the Airflow services.
--
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]