Skip to content

Commit

Permalink
Consistent logging during cluster creation (#1398)
Browse files Browse the repository at this point in the history
  • Loading branch information
danielgospodinow authored Jan 20, 2024
1 parent 706247e commit 6dc8839
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/runtimes/docker/node.go
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ func (d Docker) StartNode(ctx context.Context, node *k3d.Node) error {
}

// actually start the container
l.Log().Infof("Starting Node '%s'", node.Name)
l.Log().Infof("Starting node '%s'", node.Name)
if err := docker.ContainerStart(ctx, nodeContainer.ID, types.ContainerStartOptions{}); err != nil {
return fmt.Errorf("docker failed to start container for node '%s': %w", node.Name, err)
}
Expand Down

0 comments on commit 6dc8839

Please sign in to comment.