Added User-Agent to logs.
This commit is contained in:
parent
287a53532d
commit
c4c07813af
@ -181,8 +181,8 @@ func (h *UploadHandlers) Upload(w http.ResponseWriter, r *http.Request) {
|
|||||||
|
|
||||||
netTyp, _ := utils.NetworkType(r.Host)
|
netTyp, _ := utils.NetworkType(r.Host)
|
||||||
|
|
||||||
h.logUpload.Printf("| %s | %s | %s | SHA256 %s | %s | %d", r.RemoteAddr, netTyp,
|
h.logUpload.Printf("| %s | %s | %s | SHA256 %s | %s | %d | %s", r.RemoteAddr, netTyp,
|
||||||
fHandler.Filename, fSha256, fSaltedHash, fHandler.Size)
|
fHandler.Filename, fSha256, fSaltedHash, fHandler.Size, r.UserAgent())
|
||||||
|
|
||||||
w.WriteHeader(http.StatusCreated)
|
w.WriteHeader(http.StatusCreated)
|
||||||
} else {
|
} else {
|
||||||
@ -234,7 +234,7 @@ func (h *UploadHandlers) Download(w http.ResponseWriter, r *http.Request) {
|
|||||||
|
|
||||||
netTyp, _ := utils.NetworkType(r.Host)
|
netTyp, _ := utils.NetworkType(r.Host)
|
||||||
|
|
||||||
h.logDownload.Printf("| %s | %s | %s | %s", r.RemoteAddr, netTyp, name, saltedHash)
|
h.logDownload.Printf("| %s | %s | %s | %s | %s", r.RemoteAddr, netTyp, name, saltedHash, r.UserAgent())
|
||||||
|
|
||||||
http.ServeContent(w, r, path, stat.ModTime(), fd)
|
http.ServeContent(w, r, path, stat.ModTime(), fd)
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user