1
0
mirror of https://github.com/golang/go synced 2024-11-21 16:54:46 -07:00

dashboard: increase notification log to 200 lines

The go command lists all packages that were built.
A recent breakage notification included this text:

$ tail -100 < log
ok      errors
ok      exp/ebnf
?       exp/ebnflint [no test files]
ok      exp/gotype
ok      exp/norm
ok      exp/spdy

If the breakage occurred before this point it would
not be visible in the output.

R=golang-dev, gri, kevlar
CC=golang-dev
https://golang.org/cl/5504109
This commit is contained in:
Andrew Gerrand 2012-01-04 11:22:58 +11:00
parent 99fed2be27
commit 126ee245c6

View File

@ -5,5 +5,5 @@ http://{{.Hostname}}/log/{{.Result.LogHash}}
http://code.google.com/p/go/source/detail?r={{shortHash .Commit.Hash}}
$ tail -100 < log
{{printf "%s" .Log.Text | tail 100}}
$ tail -200 < log
{{printf "%s" .Log.Text | tail 200}}