We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d30ab7b commit 579278bCopy full SHA for 579278b
sftp/server.go
@@ -107,7 +107,7 @@ func (c *SFTPServer) Run() error {
107
go func(conn net.Conn) {
108
defer conn.Close()
109
if err := c.AcceptInbound(conn, conf); err != nil {
110
- log.WithField("error", err).Error("sftp: failed to accept inbound connection")
+ log.WithField("error", err).WithField("ip", conn.RemoteAddr().String()).Error("sftp: failed to accept inbound connection")
111
}
112
}(conn)
113
0 commit comments