diff --git a/pkg/cmd/openshift-tests/disruption/poll-service/poll_service_options.go b/pkg/cmd/openshift-tests/disruption/poll-service/poll_service_options.go index a728354e4bef..8b288e7c65aa 100644 --- a/pkg/cmd/openshift-tests/disruption/poll-service/poll_service_options.go +++ b/pkg/cmd/openshift-tests/disruption/poll-service/poll_service_options.go @@ -40,7 +40,7 @@ func (o *PollServiceOptions) Run(ctx context.Context) error { } if len(startingContent) > 0 { // print starting content to the log so that we can simply scrape the log to find all entries at the end - o.OriginalOutFile.Write(startingContent) + o.OriginalOutFile.Write([]byte(fmt.Sprintf("Found existing content: %s", string(startingContent)))) } recorder := monitor.WrapWithJSONLRecorder(monitor.NewRecorder(), o.IOStreams.Out, nil)