diff options
| author | Taras Madan <tarasmadan@google.com> | 2024-07-24 14:02:26 +0200 |
|---|---|---|
| committer | Taras Madan <tarasmadan@google.com> | 2024-07-24 13:19:43 +0000 |
| commit | 499b5b4645ecceb8359b54b0dd6adb3bd356a899 (patch) | |
| tree | 7bfb7ac0519f4e26833fa9728016cea4c6d39613 | |
| parent | b24754ac730df9e32f53ad492f9f32194a01ae7d (diff) | |
dashboard/app/reporting.go: highlight bug name
| -rw-r--r-- | dashboard/app/reporting.go | 2 |
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 { |
