Merge "More verbose message on goma_ctl.py ensure_start failure." am: 8f66b1b733
am: 051b533901
am: 38e2a9e26b
Change-Id: I1774597912679ba5cf3ad19349c191b17495ee2e
This commit is contained in:
commit
303dd64e59
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