(connIndex uint8, address net.IP, protocol Protocol)
| 47 | } |
| 48 | |
| 49 | func (o *Observer) logConnecting(connIndex uint8, address net.IP, protocol Protocol) { |
| 50 | o.log.Debug(). |
| 51 | Int(management.EventTypeKey, int(management.Cloudflared)). |
| 52 | Uint8(LogFieldConnIndex, connIndex). |
| 53 | IPAddr(LogFieldIPAddress, address). |
| 54 | Str(LogFieldProtocol, protocol.String()). |
| 55 | Msg("Registering tunnel connection") |
| 56 | } |
| 57 | |
| 58 | func (o *Observer) logConnected(connectionID uuid.UUID, connIndex uint8, location string, address net.IP, protocol Protocol) { |
| 59 | o.log.Info(). |
no test coverage detected