Skip to content

Commit 8b19eb6

Browse files
committed
Added the cwd to the popen logging.
1 parent 72f6f48 commit 8b19eb6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

driver/popenwrapper.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
_logger = logging.getLogger(__name__)
1111

1212
def Popen(*pargs, **kwargs):
13-
_logger.debug("WLLVM Executing:\n" + pprint.pformat(pargs[0]))
13+
_logger.debug("WLLVM Executing:\n" + pprint.pformat(pargs[0]) + "\nin: " + os.getcwd())
1414
try:
1515
return subprocess.Popen(*pargs,**kwargs)
1616
except OSError:

0 commit comments

Comments
 (0)