(format string, args ...interface{})
| 114 | } |
| 115 | |
| 116 | func (f *fileLogger) Debugf(format string, args ...interface{}) { |
| 117 | f.m.Lock() |
| 118 | defer f.m.Unlock() |
| 119 | |
| 120 | if f.level < logrus.DebugLevel { |
| 121 | return |
| 122 | } |
| 123 | |
| 124 | f.logger.Debug(f.addPrefixes(stripEscapeSequences(fmt.Sprintf(format, args...)))) |
| 125 | } |
| 126 | |
| 127 | func (f *fileLogger) Info(args ...interface{}) { |
| 128 | f.m.Lock() |
no test coverage detected