Skip to content

Commit

Permalink
EOF error logging with lower verbosity level
Browse files Browse the repository at this point in the history
  • Loading branch information
SandraRodgers committed Jan 19, 2024
1 parent e7dcbec commit a4d89b2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/client/live/client.go
Original file line number Diff line number Diff line change
Expand Up @@ -263,7 +263,7 @@ func (c *Client) Stream(r io.Reader) error {
default:
bytesRead, err := r.Read(chunk)
if err != nil {
klog.V(1).Infof("r.Read failed. Err: %v\n", err)
klog.V(4).Infof("r.Read encountered EOF. Err: %v\n", err)
klog.V(6).Infof("live.Stream() LEAVE\n")
return err
}
Expand Down

0 comments on commit a4d89b2

Please sign in to comment.