We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bd67b0f commit e6bb1b4Copy full SHA for e6bb1b4
pkg/processor/processor.go
@@ -154,7 +154,7 @@ func (p *CheckProcessor) ProcessMessage(m string) error {
154
}
155
156
157
- l.Debug("Sending open findings")
+ l.Debug("Notifying findings")
158
err = p.notifyFindings(findingsState, check.Tag)
159
if err != nil {
160
return err
pkg/queue/sqs.go
@@ -165,6 +165,7 @@ func (c *SQSConsumer) readAndProcess(ctx context.Context) error {
165
166
167
// Delete it
168
+ c.logger.Debugf("Deleting SQS message: %s", *mssg.Body)
169
if err = c.deleteMessage(mssg); err != nil {
170
c.logger.Errorf("Error deleting processed message: %s", err.Error())
171
0 commit comments