diff options
author | Patrick Bajao <ebajao@gitlab.com> | 2021-07-23 04:33:49 +0000 |
---|---|---|
committer | Patrick Bajao <ebajao@gitlab.com> | 2021-07-23 04:33:49 +0000 |
commit | 1eadd3a61f3955354b4041fd284ba50e2a17864a (patch) | |
tree | 3357d32d99d9185faf8056ea4662a82b72855122 /internal/command/shared/customaction/customaction.go | |
parent | 05ae5680633c1de1cc369c592f3bbcce13ee7375 (diff) | |
parent | fb7b9417842c66e12466e658e861e19619dfcd9a (diff) | |
download | gitlab-shell-1eadd3a61f3955354b4041fd284ba50e2a17864a.tar.gz |
Merge branch 'id-switch-logging-to-labkit' into 'main'
Switch to labkit/log for logging functionality
See merge request gitlab-org/gitlab-shell!498
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 { |