aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--dashboard/app/reporting_email.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/dashboard/app/reporting_email.go b/dashboard/app/reporting_email.go
index cb22164a9..1bc6479c3 100644
--- a/dashboard/app/reporting_email.go
+++ b/dashboard/app/reporting_email.go
@@ -319,7 +319,7 @@ func incomingMail(c context.Context, r *http.Request) error {
func loadBugInfo(c context.Context, msg *email.Email) (bug *Bug, bugReporting *BugReporting, reporting *Reporting) {
if msg.BugID == "" {
- log.Warningf(c, "no bug ID")
+ log.Warningf(c, "no bug ID (%q)", msg.Subject)
return nil, nil, nil
}
bug, _, err := findBugByReportingID(c, msg.BugID)