From 499b5b4645ecceb8359b54b0dd6adb3bd356a899 Mon Sep 17 00:00:00 2001 From: Taras Madan Date: Wed, 24 Jul 2024 14:02:26 +0200 Subject: dashboard/app/reporting.go: highlight bug name --- dashboard/app/reporting.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 { -- cgit mrf-deployment