diff options
author | Igor Drozdov <idrozdov@gitlab.com> | 2021-09-15 20:46:00 +0300 |
---|---|---|
committer | Igor Drozdov <idrozdov@gitlab.com> | 2021-09-15 20:46:08 +0300 |
commit | af3aac6b459791fabd8ebc306cdff47c609fbf53 (patch) | |
tree | 159c78d0b98126365dd3f3f08502e4c4a5110033 /internal/sshd/connection.go | |
parent | 3f640bdafe429501897541cadf2c268b13c4cf9f (diff) | |
download | gitlab-shell-id-context-fields.tar.gz |
Add context fields to loggingid-context-fields
It adds correlation ids wherever possible
Diffstat (limited to 'internal/sshd/connection.go')
-rw-r--r-- | internal/sshd/connection.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/sshd/connection.go b/internal/sshd/connection.go index 0e0da93..1d91a6c 100644 --- a/internal/sshd/connection.go +++ b/internal/sshd/connection.go @@ -54,7 +54,7 @@ func (c *connection) handle(ctx context.Context, chans <-chan ssh.NewChannel, ha // Prevent a panic in a single session from taking out the whole server defer func() { if err := recover(); err != nil { - log.WithFields(log.Fields{"recovered_error": err}).Warnf("panic handling session from %s", c.remoteAddr) + log.WithContextFields(ctx, log.Fields{"recovered_error": err, "address": c.remoteAddr}).Warn("panic handling session") } }() |