summaryrefslogtreecommitdiff
path: root/client/gitlabnet.go
diff options
context:
space:
mode:
Diffstat (limited to 'client/gitlabnet.go')
-rw-r--r--client/gitlabnet.go4
1 files changed, 4 insertions, 0 deletions
diff --git a/client/gitlabnet.go b/client/gitlabnet.go
index fcefb24..a5b22ee 100644
--- a/client/gitlabnet.go
+++ b/client/gitlabnet.go
@@ -156,6 +156,10 @@ func (c *GitlabNetClient) DoRequest(ctx context.Context, method, path string, da
return nil, err
}
+ if response.ContentLength >= 0 {
+ logger = logger.WithField("content_length_bytes", response.ContentLength)
+ }
+
logger.Info("Finished HTTP request")
return response, nil