mirror of
https://github.com/caddyserver/caddy.git
synced 2024-12-23 22:27:38 -05:00
Fixed styling and byte count
This commit is contained in:
parent
8e8e2f596d
commit
676202a31e
1 changed files with 4 additions and 5 deletions
|
@ -147,17 +147,16 @@ func NewReplacer(r *http.Request, rr *ResponseRecorder, emptyValue string) Repla
|
|||
return rep
|
||||
}
|
||||
|
||||
func canLogRequest(r *http.Request) (canLog bool) {
|
||||
func canLogRequest(r *http.Request) bool {
|
||||
if r.Method == "POST" || r.Method == "PUT" {
|
||||
for _, cType := range r.Header[headerContentType] {
|
||||
// the cType could have charset and other info
|
||||
if strings.Index(cType, contentTypeJSON) > -1 || strings.Index(cType, contentTypeXML) > -1 {
|
||||
canLog = true
|
||||
break
|
||||
return true
|
||||
}
|
||||
}
|
||||
}
|
||||
return
|
||||
return false
|
||||
}
|
||||
|
||||
// readRequestBody reads the request body and sets a
|
||||
|
@ -280,5 +279,5 @@ const (
|
|||
headerContentType = "Content-Type"
|
||||
contentTypeJSON = "application/json"
|
||||
contentTypeXML = "application/xml"
|
||||
maxLogBodySize = 100 * 1000
|
||||
maxLogBodySize = 100 * 1024
|
||||
)
|
||||
|
|
Loading…
Reference in a new issue