mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-05 21:27:35 +03:00
logging: add a Close function to the Tracer (#4298)
* logging: add a Close function to the Tracer * close the Tracer when the Transport is closed
This commit is contained in:
parent
b675e34254
commit
07ec3245bd
8 changed files with 65 additions and 1 deletions
|
@ -70,6 +70,12 @@ var _ = Describe("Tracing", func() {
|
|||
tr2.EXPECT().Debug("foo", "bar")
|
||||
tracer.Debug("foo", "bar")
|
||||
})
|
||||
|
||||
It("traces the Close event", func() {
|
||||
tr1.EXPECT().Close()
|
||||
tr2.EXPECT().Close()
|
||||
tracer.Close()
|
||||
})
|
||||
})
|
||||
})
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue