From 77b3c03405a9a815430be736ff4ccf7e8aaf10e5 Mon Sep 17 00:00:00 2001 From: Joel Rebello Date: Thu, 20 Jun 2024 17:57:10 +0200 Subject: [PATCH] orchestrator/notify: move slack notify message to trace level --- internal/orchestrator/notify/slack.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/orchestrator/notify/slack.go b/internal/orchestrator/notify/slack.go index 0ec04ef7..60a6a66f 100644 --- a/internal/orchestrator/notify/slack.go +++ b/internal/orchestrator/notify/slack.go @@ -44,7 +44,7 @@ func (ss *slackSender) Send(upd *v1types.ConditionUpdateEvent) error { "conditionID": upd.ConditionUpdate.ConditionID.String(), }) - le.Debug("sending slack notification") + le.Trace("sending slack notification") // cap the time we're willing to wait for Slack ctx, cancel := context.WithTimeout(context.Background(), postTimeout)