From 082e9518343b247408c8bc2dd6e4c4e137ead303 Mon Sep 17 00:00:00 2001 From: Craig Condit Date: Thu, 15 Aug 2024 16:08:31 -0500 Subject: [PATCH] [YUNIKORN-2807] Don't log 'task missing' as ERROR --- pkg/cache/context.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/cache/context.go b/pkg/cache/context.go index 6b7919237..61fe1ea02 100644 --- a/pkg/cache/context.go +++ b/pkg/cache/context.go @@ -1260,7 +1260,7 @@ func (ctx *Context) TaskEventHandler() func(obj interface{}) { taskID := event.GetTaskID() task := ctx.getTask(appID, taskID) if task == nil { - log.Log(log.ShimContext).Error("failed to handle task event, task does not exist", + log.Log(log.ShimContext).Debug("failed to handle task event, task does not exist", zap.String("applicationID", appID), zap.String("taskID", taskID)) return