Skip to content

Commit 307b431

Browse files
committed
transfer: clean up log spam
1 parent 54f1a67 commit 307b431

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

transfer.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1518,7 +1518,7 @@ func (self *SendSequence) Run() {
15181518
if itemAckTimeout <= 0 {
15191519
// message took too long to ack
15201520
// close the sequence
1521-
glog.Errorf("[s]%s->%s...%s s(%s) exit ack timeout (%s)\n", self.client.ClientTag(), self.intermediaryIds, self.destination.DestinationId, self.destination.StreamId, self.sendBufferSettings.AckTimeout)
1521+
glog.V(1).Infof("[s]%s->%s...%s s(%s) exit ack timeout (%s)\n", self.client.ClientTag(), self.intermediaryIds, self.destination.DestinationId, self.destination.StreamId, self.sendBufferSettings.AckTimeout)
15221522
return
15231523
}
15241524
if itemAckTimeout < timeout {
@@ -1583,7 +1583,7 @@ func (self *SendSequence) Run() {
15831583
} else {
15841584
err := c()
15851585
if err != nil {
1586-
glog.Infof("[s]resend drop = %s", err)
1586+
glog.V(1).Infof("[s]resend drop = %s", err)
15871587
}
15881588
}
15891589

@@ -1980,7 +1980,7 @@ func (self *SendSequence) sendWithSetContract(
19801980
} else {
19811981
err = c()
19821982
if err != nil {
1983-
glog.Infof("[s]drop = %s", err)
1983+
glog.V(1).Infof("[s]drop = %s", err)
19841984
}
19851985
}
19861986

0 commit comments

Comments
 (0)