(subsystem string, layer int, packet []byte)
| 102 | } |
| 103 | |
| 104 | func (s *Server) debugPacket(subsystem string, layer int, packet []byte) { |
| 105 | if s.Debug == nil { |
| 106 | return |
| 107 | } |
| 108 | s.Debug(subsystem, fmt.Sprintf("PKT %d %s END", layer, base64.StdEncoding.EncodeToString(packet))) |
| 109 | } |
nothing calls this directly
no outgoing calls
no test coverage detected