diff options
author | Igor Drozdov <idrozdov@gitlab.com> | 2021-07-22 17:58:58 +0300 |
---|---|---|
committer | Igor Drozdov <idrozdov@gitlab.com> | 2021-07-22 18:38:47 +0300 |
commit | fb7b9417842c66e12466e658e861e19619dfcd9a (patch) | |
tree | d0d49465ee51299ed97f404e1aeebd92b6f9ff9e /internal/command/shared/customaction/customaction.go | |
parent | a8b2088d6d40e365445fcf4bea5183f83e31cc51 (diff) | |
download | gitlab-shell-fb7b9417842c66e12466e658e861e19619dfcd9a.tar.gz |
Switch to labkit/log for logging functionality
Diffstat (limited to 'internal/command/shared/customaction/customaction.go')
-rw-r--r-- | internal/command/shared/customaction/customaction.go | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/internal/command/shared/customaction/customaction.go b/internal/command/shared/customaction/customaction.go index d91f8ab..34086fb 100644 --- a/internal/command/shared/customaction/customaction.go +++ b/internal/command/shared/customaction/customaction.go @@ -10,12 +10,13 @@ import ( "io" "net/http" - log "github.com/sirupsen/logrus" "gitlab.com/gitlab-org/gitlab-shell/internal/command/readwriter" "gitlab.com/gitlab-org/gitlab-shell/internal/config" "gitlab.com/gitlab-org/gitlab-shell/internal/gitlabnet" "gitlab.com/gitlab-org/gitlab-shell/internal/gitlabnet/accessverifier" "gitlab.com/gitlab-org/gitlab-shell/internal/pktline" + + "gitlab.com/gitlab-org/labkit/log" ) type Request struct { |