(format string, v ...any)
| 1062 | } |
| 1063 | |
| 1064 | func (s *Server) debugLogf(format string, v ...any) { |
| 1065 | if s.debug { |
| 1066 | s.logf(format, v...) |
| 1067 | } |
| 1068 | } |
| 1069 | |
| 1070 | // run serves the client until there's an error. |
| 1071 | // If the client hangs up or the server is closed, run returns nil, otherwise run returns an error. |
no test coverage detected