(format string, args ...interface{})
| 63 | } |
| 64 | |
| 65 | func (s *Sentinel) printf(format string, args ...interface{}) { |
| 66 | if s.LogFunc != nil { |
| 67 | s.LogFunc(format, args...) |
| 68 | } |
| 69 | } |
| 70 | |
| 71 | func (s *Sentinel) errorf(err error, format string, args ...interface{}) { |
| 72 | if s.ErrFunc != nil { |
no outgoing calls
no test coverage detected