Skip to content

Commit 55f77d8

Browse files
author
Jeffrey Kao
committed
DEBUG
1 parent efacc1a commit 55f77d8

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

airflow/configuration.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@
2929
import warnings
3030
import shlex
3131
import sys
32+
import logging
3233

3334
from future import standard_library
3435

@@ -88,6 +89,8 @@ def run_command(command):
8889
"""
8990
Runs command and returns stdout
9091
"""
92+
logging.debug("jeffk - env %s " % (os.environ))
93+
logging.debug("jeffk - Command: %s Split: %s" % (command, shlex.split(command)))
9194
process = subprocess.Popen(
9295
shlex.split(command),
9396
stdout=subprocess.PIPE,

0 commit comments

Comments
 (0)