diff --git a/integrationtests/self/key_update_test.go b/integrationtests/self/key_update_test.go index 54317d04..1fb5a815 100644 --- a/integrationtests/self/key_update_test.go +++ b/integrationtests/self/key_update_test.go @@ -89,6 +89,7 @@ func (t *connTracer) DroppedKey(logging.KeyPhase) func (t *connTracer) SetLossTimer(logging.TimerType, logging.EncryptionLevel, time.Time) {} func (t *connTracer) LossTimerExpired(logging.TimerType, logging.EncryptionLevel) {} func (t *connTracer) LossTimerCanceled() {} +func (t *connTracer) Debug(string, string) {} func (t *connTracer) Close() {} var _ = Describe("Key Update tests", func() { diff --git a/internal/mocks/logging/connection_tracer.go b/internal/mocks/logging/connection_tracer.go index ddede4b6..4236612c 100644 --- a/internal/mocks/logging/connection_tracer.go +++ b/internal/mocks/logging/connection_tracer.go @@ -75,6 +75,18 @@ func (mr *MockConnectionTracerMockRecorder) ClosedConnection(arg0 interface{}) * return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "ClosedConnection", reflect.TypeOf((*MockConnectionTracer)(nil).ClosedConnection), arg0) } +// Debug mocks base method +func (m *MockConnectionTracer) Debug(arg0, arg1 string) { + m.ctrl.T.Helper() + m.ctrl.Call(m, "Debug", arg0, arg1) +} + +// Debug indicates an expected call of Debug +func (mr *MockConnectionTracerMockRecorder) Debug(arg0, arg1 interface{}) *gomock.Call { + mr.mock.ctrl.T.Helper() + return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "Debug", reflect.TypeOf((*MockConnectionTracer)(nil).Debug), arg0, arg1) +} + // DroppedEncryptionLevel mocks base method func (m *MockConnectionTracer) DroppedEncryptionLevel(arg0 protocol.EncryptionLevel) { m.ctrl.T.Helper() diff --git a/logging/interface.go b/logging/interface.go index e1baeb72..90837571 100644 --- a/logging/interface.go +++ b/logging/interface.go @@ -126,4 +126,5 @@ type ConnectionTracer interface { LossTimerCanceled() // Close is called when the connection is closed. Close() + Debug(name, msg string) } diff --git a/logging/mock_connection_tracer_test.go b/logging/mock_connection_tracer_test.go index b7684fa1..1a45a903 100644 --- a/logging/mock_connection_tracer_test.go +++ b/logging/mock_connection_tracer_test.go @@ -74,6 +74,18 @@ func (mr *MockConnectionTracerMockRecorder) ClosedConnection(arg0 interface{}) * return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "ClosedConnection", reflect.TypeOf((*MockConnectionTracer)(nil).ClosedConnection), arg0) } +// Debug mocks base method +func (m *MockConnectionTracer) Debug(arg0, arg1 string) { + m.ctrl.T.Helper() + m.ctrl.Call(m, "Debug", arg0, arg1) +} + +// Debug indicates an expected call of Debug +func (mr *MockConnectionTracerMockRecorder) Debug(arg0, arg1 interface{}) *gomock.Call { + mr.mock.ctrl.T.Helper() + return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "Debug", reflect.TypeOf((*MockConnectionTracer)(nil).Debug), arg0, arg1) +} + // DroppedEncryptionLevel mocks base method func (m *MockConnectionTracer) DroppedEncryptionLevel(arg0 protocol.EncryptionLevel) { m.ctrl.T.Helper() diff --git a/logging/multiplex.go b/logging/multiplex.go index 1dfc5283..f700d880 100644 --- a/logging/multiplex.go +++ b/logging/multiplex.go @@ -186,6 +186,12 @@ func (m *connTracerMultiplexer) LossTimerCanceled() { } } +func (m *connTracerMultiplexer) Debug(name, msg string) { + for _, t := range m.tracers { + t.Debug(name, msg) + } +} + func (m *connTracerMultiplexer) Close() { for _, t := range m.tracers { t.Close() diff --git a/metrics/metrics.go b/metrics/metrics.go index 070ccc13..8e79707e 100644 --- a/metrics/metrics.go +++ b/metrics/metrics.go @@ -218,4 +218,5 @@ func (t *connTracer) DroppedKey(logging.KeyPhase) func (t *connTracer) SetLossTimer(logging.TimerType, logging.EncryptionLevel, time.Time) {} func (t *connTracer) LossTimerExpired(logging.TimerType, logging.EncryptionLevel) {} func (t *connTracer) LossTimerCanceled() {} +func (t *connTracer) Debug(string, string) {} func (t *connTracer) Close() {} diff --git a/qlog/event.go b/qlog/event.go index 2c6ca814..1344a69c 100644 --- a/qlog/event.go +++ b/qlog/event.go @@ -462,3 +462,16 @@ func (e eventCongestionStateUpdated) IsNil() bool { return false } func (e eventCongestionStateUpdated) MarshalJSONObject(enc *gojay.Encoder) { enc.StringKey("new", e.state.String()) } + +type eventGeneric struct { + name string + msg string +} + +func (e eventGeneric) Category() category { return categoryTransport } +func (e eventGeneric) Name() string { return e.name } +func (e eventGeneric) IsNil() bool { return false } + +func (e eventGeneric) MarshalJSONObject(enc *gojay.Encoder) { + enc.StringKey("details", e.msg) +} diff --git a/qlog/qlog.go b/qlog/qlog.go index 8b154eac..9c1b8ba5 100644 --- a/qlog/qlog.go +++ b/qlog/qlog.go @@ -417,3 +417,12 @@ func (t *connectionTracer) LossTimerCanceled() { t.recordEvent(time.Now(), &eventLossTimerCanceled{}) t.mutex.Unlock() } + +func (t *connectionTracer) Debug(name, msg string) { + t.mutex.Lock() + t.recordEvent(time.Now(), &eventGeneric{ + name: name, + msg: msg, + }) + t.mutex.Unlock() +} diff --git a/qlog/qlog_test.go b/qlog/qlog_test.go index 4962826b..ec98443c 100644 --- a/qlog/qlog_test.go +++ b/qlog/qlog_test.go @@ -698,6 +698,17 @@ var _ = Describe("Tracing", func() { Expect(ev).To(HaveLen(1)) Expect(ev).To(HaveKeyWithValue("event_type", "cancelled")) }) + + It("records a generic event", func() { + tracer.Debug("foo", "bar") + entry := exportAndParseSingle() + Expect(entry.Time).To(BeTemporally("~", time.Now(), scaleDuration(10*time.Millisecond))) + Expect(entry.Category).To(Equal("transport")) + Expect(entry.Name).To(Equal("foo")) + ev := entry.Event + Expect(ev).To(HaveLen(1)) + Expect(ev).To(HaveKeyWithValue("details", "bar")) + }) }) }) })