diff --git a/airflow/configuration.py b/airflow/configuration.py index 20ef0674be54a..2768318817d98 100644 --- a/airflow/configuration.py +++ b/airflow/configuration.py @@ -29,6 +29,7 @@ import warnings import shlex import sys +import logging from future import standard_library @@ -88,6 +89,8 @@ def run_command(command): """ Runs command and returns stdout """ + logging.debug("jeffk - env %s " % (os.environ)) + logging.debug("jeffk - Command: %s Split: %s" % (command, shlex.split(command))) process = subprocess.Popen( shlex.split(command), stdout=subprocess.PIPE,