(subsystem, format string, args ...interface{})
| 88 | } |
| 89 | |
| 90 | func (s *Server) log(subsystem, format string, args ...interface{}) { |
| 91 | if s.Log == nil { |
| 92 | return |
| 93 | } |
| 94 | s.Log(subsystem, fmt.Sprintf(format, args...)) |
| 95 | } |
| 96 | |
| 97 | func (s *Server) debug(subsystem, format string, args ...interface{}) { |
| 98 | if s.Debug == nil { |
no outgoing calls
no test coverage detected