| Index: vpython/run.go
|
| diff --git a/vpython/run.go b/vpython/run.go
|
| index c8b703865996a83a6ece30c922ac20a491976c62..1862d859f7144b180af37f3da151c24512325ce9 100644
|
| --- a/vpython/run.go
|
| +++ b/vpython/run.go
|
| @@ -95,6 +95,9 @@ func Run(c context.Context, opts Options) error {
|
| cmd.Stdout = os.Stdout
|
| cmd.Stderr = os.Stderr
|
|
|
| + logging.Debugf(c, "Running Python command: %s\nWorkDir: %s\nEnv: %s", cmd.Args, cmd.Dir, cmd.Env)
|
| +
|
| + // Output the Python command being executed.
|
| if err := runAndForwardSignals(c, cmd, cancelFunc); err != nil {
|
| return errors.Annotate(err).Reason("failed to execute bootstrapped Python").Err()
|
| }
|
|
|