diff --git a/pkg/registry/common/heal/find_test.go b/pkg/registry/common/heal/find_test.go index fd254a4f3f..b4636cb73f 100644 --- a/pkg/registry/common/heal/find_test.go +++ b/pkg/registry/common/heal/find_test.go @@ -65,6 +65,7 @@ func TestHealClient_FindTest(t *testing.T) { }). Build() + log.FromContext(ctx).Info("MY_INFO domain.Build Completed") // 1. Create NS, NSE find clients findCtx, findCancel := context.WithCancel(ctx) @@ -133,12 +134,14 @@ func TestHealClient_FindTest(t *testing.T) { findCancel() require.Eventually(t, func() bool { - _, err := nsRespStream.Recv() + r, err := nsRespStream.Recv() + log.FromContext(ctx).Infof("MY_INFO Recv returned %v, error: %v", r, err) return err != nil }, time.Millisecond*500, time.Millisecond*50) require.Eventually(t, func() bool { - _, err := nseRespStream.Recv() + r, err := nseRespStream.Recv() + log.FromContext(ctx).Infof("MY_INFO Recv returned %v, error: %v", r, err) return err != nil }, time.Millisecond*500, time.Millisecond*50) }