Skip to content

Commit

Permalink
include timestamps in extended test build logs
Browse files Browse the repository at this point in the history
  • Loading branch information
bparees committed Oct 25, 2016
1 parent 1f62556 commit 1be1f74
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/extended/util/framework.go
Original file line number Diff line number Diff line change
Expand Up @@ -360,7 +360,7 @@ func (t *BuildResult) Logs() (string, error) {
return "", fmt.Errorf("Not enough information to retrieve logs for %#v", *t)
}

bldOuput, err := t.oc.Run("logs").Args("-f", t.BuildPath).Output()
bldOuput, err := t.oc.Run("logs").Args("-f", t.BuildPath, "--timestamps").Output()
if err != nil {
return "", fmt.Errorf("Error retieving logs for %#v: %v", *t, err)
}
Expand Down

0 comments on commit 1be1f74

Please sign in to comment.