Merge pull request #5919 from tstromberg/more-logs

Double lookBackwardsCount to 400, to find usage error in new apiserver
pull/5865/head
Medya Ghazizadeh 2019-11-25 14:13:24 -08:00 committed by GitHub
commit 97b8ee82d1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -60,7 +60,7 @@ type logRunner interface {
// lookbackwardsCount is how far back to look in a log for problems. This should be large enough to
// include usage messages from a failed binary, but small enough to not include irrelevant problems.
const lookBackwardsCount = 200
const lookBackwardsCount = 400
// Follow follows logs from multiple files in tail(1) format
func Follow(r cruntime.Manager, bs bootstrapper.Bootstrapper, cr logRunner) error {