From c7ee8f27e967338e86a63be3fef4aebfb96af4ed Mon Sep 17 00:00:00 2001 From: Boris Nagaev Date: Fri, 3 Apr 2026 19:41:43 -0500 Subject: [PATCH] notifications: log unknown ntfns at debug Log unknown server notification variants at Debug level instead of Warn to avoid noisy logs during feature rollout mismatches. --- notifications/manager.go | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/notifications/manager.go b/notifications/manager.go index 71c0f3c4..3eda5d65 100644 --- a/notifications/manager.go +++ b/notifications/manager.go @@ -385,8 +385,7 @@ func (m *Manager) handleNotification(ntfn *swapserverrpc. } default: - log.Warnf("Received unknown notification type: %v", - ntfn) + log.Debugf("Received unknown notification type: %v", ntfn) } }