aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTaras Madan <tarasmadan@google.com>2024-07-24 14:02:26 +0200
committerTaras Madan <tarasmadan@google.com>2024-07-24 13:19:43 +0000
commit499b5b4645ecceb8359b54b0dd6adb3bd356a899 (patch)
tree7bfb7ac0519f4e26833fa9728016cea4c6d39613
parentb24754ac730df9e32f53ad492f9f32194a01ae7d (diff)
dashboard/app/reporting.go: highlight bug name
-rw-r--r--dashboard/app/reporting.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/dashboard/app/reporting.go b/dashboard/app/reporting.go
index 5e9583da3..134b5db30 100644
--- a/dashboard/app/reporting.go
+++ b/dashboard/app/reporting.go
@@ -56,7 +56,7 @@ func reportingPollBugs(c context.Context, typ string) []*dashapi.BugReport {
for _, bug := range bugs {
rep, err := handleReportBug(c, typ, state, bug)
if err != nil {
- log.Errorf(c, "%v: failed to report bug %v: %v", bug.Namespace, bug.Title, err)
+ log.Errorf(c, "%v: failed to report bug '%v': %v", bug.Namespace, bug.Title, err)
continue
}
if rep == nil {