Lines Matching refs:filename
37 func NewVerboseLog(log logger.Logger, filename string) StatusOutput {
38 if !strings.HasSuffix(filename, ".gz") {
39 filename += ".gz"
42 f, err := logger.CreateFileWithRotation(filename, 5)
92 func NewErrorLog(log logger.Logger, filename string) StatusOutput {
93 f, err := logger.CreateFileWithRotation(filename, 5)
154 filename string member
158 func NewProtoErrorLog(log logger.Logger, filename string) StatusOutput {
159 os.Remove(filename)
162 filename: filename,
182 err := writeToFile(&e.errorProto, e.filename)
184 e.log.Printf("Failed to write file %s: %v\n", e.filename, err)
203 filename string member
208 func NewBuildProgressLog(log logger.Logger, filename string) StatusOutput {
210 filename: filename,
247 b.filename,
250 b.log.Printf("Failed to write file %s: %v\n", b.filename, err)