diff --git a/internal/handlers/handlers.go b/internal/handlers/handlers.go index e2ca58c..2477e9b 100644 --- a/internal/handlers/handlers.go +++ b/internal/handlers/handlers.go @@ -181,8 +181,8 @@ func (h *UploadHandlers) Upload(w http.ResponseWriter, r *http.Request) { netTyp, _ := utils.NetworkType(r.Host) - h.logUpload.Printf("| %s | %s | %s | SHA256 %s | %s | %d", r.RemoteAddr, netTyp, - fHandler.Filename, fSha256, fSaltedHash, fHandler.Size) + h.logUpload.Printf("| %s | %s | %s | SHA256 %s | %s | %d | %s", r.RemoteAddr, netTyp, + fHandler.Filename, fSha256, fSaltedHash, fHandler.Size, r.UserAgent()) w.WriteHeader(http.StatusCreated) } else { @@ -234,7 +234,7 @@ func (h *UploadHandlers) Download(w http.ResponseWriter, r *http.Request) { 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) }