add a logging.NullTracer

This commit is contained in:
Marten Seemann 2022-08-22 13:14:50 +03:00
parent 118a7dba5a
commit 48779d053f
2 changed files with 18 additions and 6 deletions

View file

@ -1,18 +1,30 @@
package logging
import (
"context"
"net"
"time"
)
// The NullConnectionTracer is a ConnectionTracer that does nothing.
// It is useful for embedding. Don't modify this variable!
var NullConnectionTracer ConnectionTracer = &nullConnectionTracer{}
var (
// The NullTracer is a Tracer that does nothing.
// It is useful for embedding. Don't modify this variable!
NullTracer Tracer = &nullTracer{}
// The NullConnectionTracer is a ConnectionTracer that does nothing.
// It is useful for embedding. Don't modify this variable!
NullConnectionTracer ConnectionTracer = &nullConnectionTracer{}
)
type nullTracer struct{}
func (n nullTracer) TracerForConnection(context.Context, Perspective, ConnectionID) ConnectionTracer {
return NullConnectionTracer
}
func (n nullTracer) SentPacket(net.Addr, *Header, ByteCount, []Frame) {}
func (n nullTracer) DroppedPacket(net.Addr, PacketType, ByteCount, PacketDropReason) {}
type nullConnectionTracer struct{}
var _ ConnectionTracer = &nullConnectionTracer{}
func (n nullConnectionTracer) StartedConnection(local, remote net.Addr, srcConnID, destConnID ConnectionID) {
}