diff options
author | Stan Hu <stanhu@gmail.com> | 2020-10-13 14:15:46 -0700 |
---|---|---|
committer | Stan Hu <stanhu@gmail.com> | 2020-10-13 14:17:46 -0700 |
commit | 9fe764b25e1e860fbabbe4d89326b78e622243a9 (patch) | |
tree | 931e755d458b2e47047eb9769809be5828f7c4ac | |
parent | b0cc0364c7fd23f5c69e8d59c432d096d19ec4c8 (diff) | |
download | gitlab-shell-9fe764b25e1e860fbabbe4d89326b78e622243a9.tar.gz |
Drop "generated random correlation ID" log messagesh-suppress-random-correlation-id-log
This message happens all the time and doesn't add a lot of value.
Relates to https://gitlab.com/gitlab-com/gl-infra/delivery/-/issues/1275
-rw-r--r-- | internal/command/command.go | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/internal/command/command.go b/internal/command/command.go index c69219b..7e0617e 100644 --- a/internal/command/command.go +++ b/internal/command/command.go @@ -54,7 +54,6 @@ func ContextWithCorrelationID() (context.Context, func()) { if err != nil { log.WithError(err).Warn("unable to generate correlation ID") } else { - log.Info("generated random correlation ID") ctx = correlation.ContextWithCorrelation(ctx, correlationID) } } |