Skip to content

Commit

Permalink
DEBUG
Browse files Browse the repository at this point in the history
  • Loading branch information
Jeffrey Kao committed May 11, 2018
1 parent efacc1a commit 55f77d8
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions airflow/configuration.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@
import warnings
import shlex
import sys
import logging

from future import standard_library

Expand Down Expand Up @@ -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,
Expand Down

0 comments on commit 55f77d8

Please sign in to comment.