ashb commented on a change in pull request #6660: [AIRFLOW-6065] Add Stackdriver Task Handler URL: https://github.com/apache/airflow/pull/6660#discussion_r355963514
########## File path: docs/howto/write-logs.rst ########## @@ -36,6 +36,38 @@ can not be found or accessed, local logs will be displayed. Note that logs are only sent to remote storage once a task is complete (including failure); In other words, remote logs for running tasks are unavailable (but local logs are available). +.. _write-logs-advanced: + +Advanced configuration +'''''''''''''''''''''' + +Not all configuration options are available from the ``airflow.cfg`` file. Some configuration options require +that the logging config class be overwritten. This can be done by ``logging_config_class`` option +in ``airflow.cfg`` file. This option should specify the import path indicating to a configuration compatible with +:class:`logging.config.dictConfig`. If your file is not importable, then you should set a :any:``PYTHONPATH`` environment. Review comment: ```suggestion :class:`logging.config.dictConfig`. If your file is not in a standard import location, then you should set a :any:``PYTHONPATH`` environment. ``` ---------------------------------------------------------------- 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. For queries about this service, please contact Infrastructure at: [email protected] With regards, Apache Git Services
