Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion server/internal/ingest/processor/processor.go
Original file line number Diff line number Diff line change
Expand Up @@ -254,7 +254,7 @@ func (p *Processor) processFile(
}

p.filesProcessed.WithLabelValues(app, processResult).Inc()
slog.Info("Finished processing file", "file", file, "id", reportID, "app", app)
slog.Debug("Finished processing file", "file", file, "id", reportID, "app", app)

return attemptCount, failureCount
}
Expand Down
2 changes: 1 addition & 1 deletion server/internal/webservice/handlers/json_hander.go
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,6 @@ func (h *jsonHandler) serveHTTP(w http.ResponseWriter, r *http.Request, reqID st
return
}

slog.Info("File successfully uploaded", "req_id", reqID, "app", app, "target", targetPath)
slog.Debug("File successfully uploaded", "req_id", reqID, "app", app, "target", targetPath)
w.WriteHeader(h.successStatus)
}
2 changes: 1 addition & 1 deletion server/internal/webservice/handlers/legacy_upload.go
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,6 @@ func (h *LegacyReport) ServeHTTP(w http.ResponseWriter, r *http.Request) {
}

app := constants.LegacyReportTag + "/" + distribution + "/desktop/" + version
slog.Info("Request recv'd", "req_id", reqID, "app", app)
slog.Debug("Request recv'd", "req_id", reqID, "app", app)
h.jsonHandler.serveHTTP(w, r, reqID, app)
}
2 changes: 1 addition & 1 deletion server/internal/webservice/handlers/upload.go
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,6 @@ func (h *Upload) ServeHTTP(w http.ResponseWriter, r *http.Request) {
return
}

slog.Info("Request recv'd", "req_id", reqID, "app", app)
slog.Debug("Request recv'd", "req_id", reqID, "app", app)
h.jsonHandler.serveHTTP(w, r, reqID, app)
}
Loading