From a601ebd6b60c448eeca7b56d80b08a36d2a7d29f Mon Sep 17 00:00:00 2001 From: hub-Prateek Date: Sun, 26 Nov 2023 11:41:42 +0530 Subject: [PATCH] Changed the log message --- pkg/scheduler/framework/runtime/framework.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkg/scheduler/framework/runtime/framework.go b/pkg/scheduler/framework/runtime/framework.go index 3f8aefe53da..8fadf65ebfe 100644 --- a/pkg/scheduler/framework/runtime/framework.go +++ b/pkg/scheduler/framework/runtime/framework.go @@ -355,8 +355,8 @@ func NewFramework(ctx context.Context, r Registry, profile *config.KubeScheduler options.captureProfile(outputProfile) } - // Logs Enabled and Disabled Plugins at each extension point - logger.V(2).Info("Plugins enabled and disabled at each extension point", "config.Plugins", *f.ListPlugins()) + // Logs Enabled Plugins at each extension point, taking default plugins, given config, and multipoint into consideration + logger.V(2).Info("the scheduler starts to work with those plugins", "Plugins", *f.ListPlugins()) f.setInstrumentedPlugins() return f, nil }