(format string, args ...interface{})
| 362 | } |
| 363 | |
| 364 | func (e *outExpecter) logf(format string, args ...interface{}) { |
| 365 | e.t.Helper() |
| 366 | |
| 367 | // Match regular logger timestamp format, we seem to be logging in |
| 368 | // UTC in other places as well, so match here. |
| 369 | e.t.Logf("%s: %s: %s", time.Now().UTC().Format("2006-01-02 15:04:05.000"), e.name.Load(), fmt.Sprintf(format, args...)) |
| 370 | } |
| 371 | |
| 372 | func (e *outExpecter) fatalf(reason string, format string, args ...interface{}) { |
| 373 | e.t.Helper() |
no test coverage detected