Skip to content

Commit

Permalink
remove driver logs from executor
Browse files Browse the repository at this point in the history
These logs congest the executor runtime logs making it difficult for the
user to differentiate between logs. The driver logs are unnecessary here
and can be removed to reduce this clutter.

Signed-off-by: Humair Khan <HumairAK@users.noreply.github.com>
  • Loading branch information
HumairAK committed Sep 5, 2024
1 parent 0d098db commit 87db4c9
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion backend/src/v2/component/launcher_v2.go
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,6 @@ func NewLauncherV2(ctx context.Context, executionID int64, executorInputJSON, co
if err != nil {
return nil, fmt.Errorf("failed to unmarshal executor input: %w", err)
}
glog.Infof("input ComponentSpec:%s\n", prettyPrint(componentSpecJSON))
component := &pipelinespec.ComponentSpec{}
err = protojson.Unmarshal([]byte(componentSpecJSON), component)
if err != nil {
Expand Down

0 comments on commit 87db4c9

Please sign in to comment.