diff options
| author | Aleksandr Nogikh <nogikh@google.com> | 2023-04-06 13:44:15 +0200 |
|---|---|---|
| committer | Aleksandr Nogikh <wp32pw@gmail.com> | 2023-04-06 13:59:25 +0200 |
| commit | cf1773d5f8b210ed161d958c367e85035d85b6d8 (patch) | |
| tree | cf4de417b02b4a3809f47c24b2e178aed14942d0 | |
| parent | b50ac41fefcbfd65da8e0aa28494b27bae04ba6b (diff) | |
dashboard: log incoming discussion messages
| -rw-r--r-- | dashboard/app/reporting_email.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/dashboard/app/reporting_email.go b/dashboard/app/reporting_email.go index 4e90a0b72..8b260a3d3 100644 --- a/dashboard/app/reporting_email.go +++ b/dashboard/app/reporting_email.go @@ -545,6 +545,7 @@ func processIncomingEmail(c context.Context, msg *email.Email) error { } func processDiscussionEmail(c context.Context, msg *email.Email, source dashapi.DiscussionSource) error { + log.Debugf(c, "processDiscussionEmail: %#v, source %v", msg, source) if len(msg.BugIDs) == 0 { return nil } |
