summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAsh McKenzie <amckenzie@gitlab.com>2020-10-13 23:16:14 +0000
committerAsh McKenzie <amckenzie@gitlab.com>2020-10-13 23:16:14 +0000
commitd5fdca30a0e5e7bec6f229aaff966a92ba369331 (patch)
tree931e755d458b2e47047eb9769809be5828f7c4ac
parentb0cc0364c7fd23f5c69e8d59c432d096d19ec4c8 (diff)
parent9fe764b25e1e860fbabbe4d89326b78e622243a9 (diff)
downloadgitlab-shell-d5fdca30a0e5e7bec6f229aaff966a92ba369331.tar.gz
Merge branch 'sh-suppress-random-correlation-id-log' into 'master'
Drop "generated random correlation ID" log message See merge request gitlab-org/gitlab-shell!417
-rw-r--r--internal/command/command.go1
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)
}
}