Skip to content

Commit c35d180

Browse files
committed
Fix log level
1 parent 3494341 commit c35d180

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pkg/agent/client.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -414,7 +414,7 @@ func (a *Client) Serve() {
414414
}
415415
if err := a.Send(closePkt); err != nil {
416416
if err == io.EOF {
417-
klog.V(2).InfoS("received EOF; connection already closed", "connectionID", connID, "dialID", dialReq.Random, "err", err)
417+
klog.V(4).InfoS("received EOF; connection already closed", "connectionID", connID, "dialID", dialReq.Random, "err", err)
418418
} else if _, ok := a.connManager.Get(connID); !ok {
419419
klog.V(5).InfoS("connection already closed", "connectionID", connID, "dialID", dialReq.Random, "err", err)
420420
} else {

0 commit comments

Comments
 (0)