Skip to content

Commit

Permalink
Debug args
Browse files Browse the repository at this point in the history
  • Loading branch information
spencergibb committed Nov 3, 2023
1 parent 6da6a2b commit c90a1b0
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
import org.springframework.boot.SpringApplication;
import org.springframework.boot.WebApplicationType;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.util.StringUtils;

@SpringBootApplication
public class ReleaserApplication extends ReleaserCommandLineRunner {
Expand All @@ -32,6 +33,7 @@ public ReleaserApplication(SpringReleaser releaser, ExecutionResultHandler execu
}

public static void main(String[] args) {
System.err.println("Releaser Args = " + StringUtils.arrayToCommaDelimitedString(args));
SpringApplication application = new SpringApplication(ReleaserApplication.class);
application.setWebApplicationType(WebApplicationType.NONE);
application.run(args);
Expand Down

0 comments on commit c90a1b0

Please sign in to comment.