Hi! I’m trying out using the built in airflow orch...
# troubleshooting
m
Hi! I’m trying out using the built in airflow orchestrator and I had a question about logging. I’m trying modify the logging config based off the airflow docs (I want to write the logs to
stdout
). To do that I need to set the
logging_config_class
config value to point at a Python logging config dict. With a typical airflow installation I would add the dictionary in a file and set
logging_config_class
= to the module path, but I’m getting turned around by the fact that the
AIRFLOW_HOME
is in the virtual_env. I tried setting
logging_config_class=orchestrator.config.log_config.LOGGING_CONFIG
, but I get the error
Command airflow version failed
. I’m guessing that’s becuase airflow can’t parse the module path. Any suggestions?