aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTaras Madan <tarasmadan@google.com>2023-09-27 12:03:39 +0200
committerTaras Madan <tarasmadan@google.com>2023-09-27 10:13:57 +0000
commit2895a507993a3da44b9f6db8233af8c6ae197616 (patch)
tree7b2e4268febd06beb06d27ae5fa5ec3e62e2617b
parent0b6a67ac4b0dc26f43030c5edd01c9175f13b784 (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.go2
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