diff options
| author | Taras Madan <tarasmadan@google.com> | 2023-09-27 12:03:39 +0200 |
|---|---|---|
| committer | Taras Madan <tarasmadan@google.com> | 2023-09-27 10:13:57 +0000 |
| commit | 2895a507993a3da44b9f6db8233af8c6ae197616 (patch) | |
| tree | 7b2e4268febd06beb06d27ae5fa5ec3e62e2617b | |
| parent | 0b6a67ac4b0dc26f43030c5edd01c9175f13b784 (diff) | |
dashboard/app/reporting_external.go: rephrase error message
Currently 2 lines emit the same error message.
Lets add more details to distinguish them.
| -rw-r--r-- | dashboard/app/reporting_external.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dashboard/app/reporting_external.go b/dashboard/app/reporting_external.go index b296139ec..e6f65c738 100644 --- a/dashboard/app/reporting_external.go +++ b/dashboard/app/reporting_external.go @@ -29,7 +29,7 @@ func apiReportingPollBugs(c context.Context, r *http.Request, payload []byte) (i } jobs, err := pollCompletedJobs(c, req.Type) if err != nil { - log.Errorf(c, "failed to poll jobs: %v", err) + log.Errorf(c, "failed to poll jobs(bugs): %v", err) } resp.Reports = append(resp.Reports, jobs...) return resp, nil |
