(args ...interface{})
| 103 | } |
| 104 | |
| 105 | func (f *fileLogger) Debug(args ...interface{}) { |
| 106 | f.m.Lock() |
| 107 | defer f.m.Unlock() |
| 108 | |
| 109 | if f.level < logrus.DebugLevel { |
| 110 | return |
| 111 | } |
| 112 | |
| 113 | f.logger.Debug(f.addPrefixes(stripEscapeSequences(fmt.Sprint(args...)))) |
| 114 | } |
| 115 | |
| 116 | func (f *fileLogger) Debugf(format string, args ...interface{}) { |
| 117 | f.m.Lock() |
no test coverage detected