(args ...interface{})
| 213 | } |
| 214 | |
| 215 | func (f *fileLogger) Done(args ...interface{}) { |
| 216 | f.m.Lock() |
| 217 | defer f.m.Unlock() |
| 218 | |
| 219 | if f.level < logrus.InfoLevel { |
| 220 | return |
| 221 | } |
| 222 | |
| 223 | f.logger.Info(f.addPrefixes(stripEscapeSequences(fmt.Sprint(args...)))) |
| 224 | } |
| 225 | |
| 226 | func (f *fileLogger) Donef(format string, args ...interface{}) { |
| 227 | f.m.Lock() |
nothing calls this directly
no test coverage detected