Skip to content

Commit

Permalink
RSDK-9368 - Remove log arg in module generation code (#4594)
Browse files Browse the repository at this point in the history
  • Loading branch information
cheukt authored Dec 2, 2024
1 parent 37df253 commit 69c766b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cli/module_generate/_templates/go/tmpl-main.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ func main() {
}

func mainWithArgs(ctx context.Context, args []string, logger logging.Logger) error {
{{.ModuleCamel}}, err := module.NewModuleFromArgs(ctx, logger)
{{.ModuleCamel}}, err := module.NewModuleFromArgs(ctx)
if err != nil {
return err
}
Expand Down

0 comments on commit 69c766b

Please sign in to comment.