Skip to content

Commit 68b1475

Browse files
committed
fix CI
1 parent 0c6908b commit 68b1475

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

pkg/accesslog/collector/connection.go

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -275,7 +275,8 @@ func (c *ConnectionPartitionContext) BuildSocketPair(event *events.SocketConnect
275275
}
276276

277277
if connectionLogger.Enable(logrus.DebugLevel) {
278-
connectionLogger.Debugf("found the connection from the conntrack, connection ID: %d, randomID: %d, original: %s:%d, conntrack: %s:%d, ignored: %t",
278+
connectionLogger.Debugf("found the connection from the conntrack, connection ID: %d, randomID: %d, "+
279+
"original: %s:%d, conntrack: %s:%d, ignored: %t",
279280
event.ConID, event.RandomID, remoteAddr, remoteAddrPort, result.DestIP, result.DestPort, ignoredConntrack)
280281
}
281282
}
@@ -311,7 +312,8 @@ func (c *ConnectionPartitionContext) BuildSocketPair(event *events.SocketConnect
311312
}
312313

313314
if connectionLogger.Enable(logrus.DebugLevel) {
314-
connectionLogger.Debugf("found the connection from the conntrack, connection ID: %d, randomID: %d, original: %s:%d, conntrack: %s:%d, ignored: %t",
315+
connectionLogger.Debugf("found the connection from the conntrack, connection ID: %d, randomID: %d, "+
316+
"original: %s:%d, conntrack: %s:%d, ignored: %t",
315317
event.ConID, event.RandomID, remoteAddr, remoteAddrPort, result.DestIP, result.DestPort, ignoredConntrack)
316318
}
317319
}

0 commit comments

Comments
 (0)