| 63 | ) |
| 64 | |
| 65 | type tLogger struct { |
| 66 | v int |
| 67 | initialized bool |
| 68 | |
| 69 | mu sync.Mutex |
| 70 | t *testing.T |
| 71 | start time.Time |
| 72 | logs map[logType]map[*regexp.Regexp]int |
| 73 | } |
| 74 | |
| 75 | func init() { |
| 76 | vLevel := 0 // Default verbosity level |
nothing calls this directly
no outgoing calls
no test coverage detected