add a generic Log() function to the connection tracer

This commit is contained in:
Marten Seemann 2020-11-27 11:52:33 +07:00
parent a76879c305
commit ff1f433c36
9 changed files with 66 additions and 0 deletions

View file

@ -126,4 +126,5 @@ type ConnectionTracer interface {
LossTimerCanceled()
// Close is called when the connection is closed.
Close()
Debug(name, msg string)
}