| Index: milo/appengine/logdog/logDogBuild.go
|
| diff --git a/milo/appengine/logdog/logDogBuild.go b/milo/appengine/logdog/logDogBuild.go
|
| index a1804e16ae01874562f5efca193bf88e0c3e0368..eb43e331db01b792728a9e69bda6a0af01b758f1 100644
|
| --- a/milo/appengine/logdog/logDogBuild.go
|
| +++ b/milo/appengine/logdog/logDogBuild.go
|
| @@ -77,11 +77,14 @@ func miloBuildStep(ub URLBuilder, anno *miloProto.Step, buildCompletedTime, now
|
| comp.Status = resp.InfraFailure
|
| }
|
|
|
| - // Hide the unimportant steps.
|
| - if comp.Status == resp.Success {
|
| + // Hide the unimportant steps, highlight the interesting ones.
|
| + switch comp.Status {
|
| + case resp.Success:
|
| if _, ok := builtIn[anno.Name]; ok {
|
| comp.Verbosity = resp.Hidden
|
| }
|
| + case resp.InfraFailure, resp.Failure:
|
| + comp.Verbosity = resp.Interesting
|
| }
|
|
|
| // Main link is a link to the stdout.
|
|
|