diff --git a/ingress/icmp_darwin.go b/ingress/icmp_darwin.go index 8f95ee89..8c74598f 100644 --- a/ingress/icmp_darwin.go +++ b/ingress/icmp_darwin.go @@ -229,7 +229,7 @@ func (ip *icmpProxy) Serve(ctx context.Context) error { continue } if err := ip.sendReply(ctx, reply); err != nil { - ip.logger.Error().Err(err).Str("dst", from.String()).Msg("Failed to send ICMP reply") + ip.logger.Debug().Err(err).Str("dst", from.String()).Msg("Failed to send ICMP reply") continue } } diff --git a/ingress/icmp_linux.go b/ingress/icmp_linux.go index 894025c2..321b5c3f 100644 --- a/ingress/icmp_linux.go +++ b/ingress/icmp_linux.go @@ -220,7 +220,7 @@ func (ip *icmpProxy) handleResponse(ctx context.Context, flow *icmpEchoFlow, buf attribute.Int("seq", reply.echo.Seq), ) if err := flow.returnToSrc(reply); err != nil { - ip.logger.Err(err).Str("dst", from.String()).Msg("Failed to send ICMP reply") + ip.logger.Debug().Err(err).Str("dst", from.String()).Msg("Failed to send ICMP reply") tracing.EndWithErrorStatus(span, err) return true, err }