diff --git a/pkg/orchestrator/reactor_state.go b/pkg/orchestrator/reactor_state.go index def5d833e7c..2dc8e2b0415 100644 --- a/pkg/orchestrator/reactor_state.go +++ b/pkg/orchestrator/reactor_state.go @@ -60,7 +60,9 @@ func (s *GlobalReactorState) Update(key util.EtcdKey, value []byte, _ bool) erro return nil case etcd.CDCKeyTypeCapture: if value == nil { - log.Info("remote capture offline", zap.String("capture-id", k.CaptureID)) + log.Info("remote capture offline", + zap.String("capture-id", k.CaptureID), + zap.Any("info", s.Captures[k.CaptureID])) delete(s.Captures, k.CaptureID) return nil }