Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-pages.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/app.go
diff options
context:
space:
mode:
authorVladimir Shushlin <vshushlin@gitlab.com>2019-04-02 14:02:57 +0300
committerNick Thomas <nick@gitlab.com>2019-04-02 14:02:57 +0300
commit3f0a9045a6c2372fe3048dc7c1571cd1684d5f08 (patch)
tree3a1d1826b10f7b2a3753c33aa1ccd732b561db43 /app.go
parentf7e2cbebbfdb25187caeeb5215a253de2cd8017a (diff)
Prepare pages auth logs for production rollout
Mostly escalate log levels Add new logs and fields to existing logs
Diffstat (limited to 'app.go')
-rw-r--r--app.go5
1 files changed, 0 insertions, 5 deletions
diff --git a/app.go b/app.go
index b872a6a1..c25bcf37 100644
--- a/app.go
+++ b/app.go
@@ -176,11 +176,6 @@ func (a *theApp) serveContent(ww http.ResponseWriter, r *http.Request, https boo
// Only for projects that have access control enabled
if domain.IsAccessControlEnabled(r) {
- log.WithFields(log.Fields{
- "host": r.Host,
- "path": r.RequestURI,
- }).Debug("Authenticate request")
-
if a.Auth.CheckAuthentication(&w, r, domain.GetID(r)) {
return
}