@@ -144,7 +144,6 @@ func (p *MessagePipe) Run(ctx context.Context) {
144144 case ConnectionAgentConfigUpdateTopic :
145145 p .handleConnectionAgentConfigUpdateTopic (m .ctx , m .message )
146146 default :
147- slog .InfoContext (ctx , "Publishing message" , "topic" , m .message .Topic , "message----" , m .message )
148147 p .bus .Publish (m .message .Topic , m .ctx , m .message )
149148 }
150149 }
@@ -193,7 +192,7 @@ func (p *MessagePipe) Reconfigure(ctx context.Context, agentConfig *mpi.AgentCon
193192
194193 // Reconfigure each plugin with the new agent config
195194 for _ , plugin := range p .plugins {
196- slog .InfoContext (ctx , "Reconfigure plugin" , "plugin" , plugin .Info ().Name )
195+ slog .DebugContext (ctx , "Reconfigure plugin" , "plugin" , plugin .Info ().Name )
197196 reconfigureError = plugin .Reconfigure (ctx , p .agentConfig )
198197 if reconfigureError != nil {
199198 slog .ErrorContext (ctx , "Reconfigure plugin failed" , "plugin" , plugin .Info ().Name )
@@ -221,7 +220,7 @@ func (p *MessagePipe) Reconfigure(ctx context.Context, agentConfig *mpi.AgentCon
221220 }
222221 }
223222
224- slog .InfoContext (ctx , "Finished reconfigure plugin " , "plugins" , p .plugins )
223+ slog .InfoContext (ctx , "Finished reconfiguring plugins " , "plugins" , p .plugins )
225224 if topic == AgentConfigUpdateTopic {
226225 response := p .createDataPlaneResponse (correlationID , mpi .CommandResponse_COMMAND_STATUS_OK ,
227226 "Successfully updated agent config" , "" )
0 commit comments