Skip to content

Commit 579278b

Browse files
committed
sftp: log ip on inbound connection failure
1 parent d30ab7b commit 579278b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sftp/server.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ func (c *SFTPServer) Run() error {
107107
go func(conn net.Conn) {
108108
defer conn.Close()
109109
if err := c.AcceptInbound(conn, conf); err != nil {
110-
log.WithField("error", err).Error("sftp: failed to accept inbound connection")
110+
log.WithField("error", err).WithField("ip", conn.RemoteAddr().String()).Error("sftp: failed to accept inbound connection")
111111
}
112112
}(conn)
113113
}

0 commit comments

Comments
 (0)