Skip to content

Commit

Permalink
Downgrade some log messages.
Browse files Browse the repository at this point in the history
  • Loading branch information
jaqx0r committed May 26, 2024
1 parent 6e3f971 commit eb29578
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions internal/tailer/logstream/cancel.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@ type ReadDeadliner interface {
func SetReadDeadlineOnDone(ctx context.Context, d ReadDeadliner) {
go func() {
<-ctx.Done()
glog.Info("cancelled, setting read deadline to interrupt read")
glog.V(1).Info("cancelled, setting read deadline to interrupt read")
if err := d.SetReadDeadline(time.Now()); err != nil {
glog.Infof("SetReadDeadline() -> %v", err)
glog.V(1).Infof("SetReadDeadline() -> %v", err)
}
}()
}
Expand Down

0 comments on commit eb29578

Please sign in to comment.