1
0
mirror of https://github.com/containrrr/watchtower.git synced 2024-12-12 09:04:17 +02:00

fix: Set log level to debug for message about API token (#757)

This commit is contained in:
Zois Pagoulatos 2021-01-12 08:34:11 +01:00 committed by GitHub
parent fb9469e58e
commit 4689853493
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -30,7 +30,7 @@ func (api *API) RequireToken(fn http.HandlerFunc) http.HandlerFunc {
log.Debugf("Expected token to be \"%s\"", api.Token)
return
}
log.Println("Valid token found.")
log.Debug("Valid token found.")
fn(w, r)
}
}