Merge "More verbose message on goma_ctl.py ensure_start failure." am: 8f66b1b733
am: 051b533901
Change-Id: I82ec909a44dc8c54bd350af47da13ee64bbaa020
This commit is contained in:
commit
38e2a9e26b
1 changed files with 2 additions and 2 deletions
|
@ -73,7 +73,7 @@ func startGoma(ctx Context, config Config) {
|
|||
|
||||
cmd := Command(ctx, config, "goma_ctl.py ensure_start", gomaCtl, "ensure_start")
|
||||
|
||||
if err := cmd.Run(); err != nil {
|
||||
ctx.Fatalf("goma_ctl.py ensure_start failed with: %v\n", err)
|
||||
if output, err := cmd.CombinedOutput(); err != nil {
|
||||
ctx.Fatalf("goma_ctl.py ensure_start failed with: %v\n%s\n", err, output)
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue