From eb3e367ba8b68c81f2da380362ee70418df9a007 Mon Sep 17 00:00:00 2001 From: andres-portainer <91705312+andres-portainer@users.noreply.github.com> Date: Wed, 28 Aug 2024 18:16:34 -0300 Subject: [PATCH] fix(edgestacks): change the level of a logged line EE-6874 (#11396) --- api/http/handler/edgestacks/edgestack_status_update.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/http/handler/edgestacks/edgestack_status_update.go b/api/http/handler/edgestacks/edgestack_status_update.go index 63b9399b5..df51fb426 100644 --- a/api/http/handler/edgestacks/edgestack_status_update.go +++ b/api/http/handler/edgestacks/edgestack_status_update.go @@ -88,7 +88,7 @@ func (handler *Handler) updateEdgeStackStatus(tx dataservices.DataStoreTx, r *ht if err != nil { if dataservices.IsErrObjectNotFound(err) { // skip error because agent tries to report on deleted stack - log.Warn(). + log.Debug(). Err(err). Int("stackID", int(stackID)). Int("status", int(*payload.Status)).