Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Hotfix/171 #379

Merged
merged 2 commits into from
Nov 22, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions cmd/openrewrite.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ type openRewriteCommand struct {
log logr.Logger
cleanup bool
mavenSettingsFile string
mavenDebugLog bool
}

func NewOpenRewriteCommand(log logr.Logger) *cobra.Command {
Expand Down Expand Up @@ -61,6 +62,7 @@ func NewOpenRewriteCommand(log logr.Logger) *cobra.Command {
openRewriteCommand.Flags().StringVarP(&openRewriteCmd.goal, "goal", "g", "dryRun", "target goal")
openRewriteCommand.Flags().StringVarP(&openRewriteCmd.input, "input", "i", "", "path to application source code directory")
openRewriteCommand.Flags().StringVarP(&openRewriteCmd.mavenSettingsFile, "maven-settings", "s", "", "path to a custom maven settings file to use")
openRewriteCommand.Flags().BoolVarP(&openRewriteCmd.mavenDebugLog, "maven debug log level", "x", false, "enable Maven debug logging")

return openRewriteCommand
}
Expand Down Expand Up @@ -151,6 +153,10 @@ func (o *openRewriteCommand) Run(ctx context.Context) error {
o.log.Info("using custom maven settings file", "path", o.mavenSettingsFile)
args = append(args, "-s", o.mavenSettingsFile)
}
if o.mavenDebugLog {
o.log.Info("Setting Maven log to debug")
args = append(args, "-X")
}

err := container.NewContainer().Run(
ctx,
Expand Down
Loading