remove tons of logs

This commit is contained in:
2026-07-05 21:13:07 +02:00
parent 34c53b1097
commit 1c852005c8
4 changed files with 71 additions and 14 deletions

View File

@@ -62,6 +62,9 @@ public class HtmlExporterCommand implements Callable<Integer> {
@Option(names = {"--debug"}, description = "Enable diagnostic mode to show unresolved call chains and detailed analysis logging.", defaultValue = "false")
private boolean debug;
@Option(names = {"--resolve-classpath"}, description = "Resolve external dependencies to enable deep JDT binding across modules.", defaultValue = "true", fallbackValue = "true")
private boolean resolveClasspath = true;
@Override
public Integer call() throws Exception {
var out = spec.commandLine().getOut();
@@ -97,7 +100,7 @@ public class HtmlExporterCommand implements Callable<Integer> {
exportService.runJsonExporter(jsonFile, outputDir, formats, profiles);
} else {
boolean renderChoicesAsDiamonds = !noDiamonds;
exportService.runExporter(inputDir, outputDir, formats, renderChoicesAsDiamonds, profiles, flowsFile, machineFilter);
exportService.runExporter(inputDir, outputDir, formats, renderChoicesAsDiamonds, profiles, flowsFile, machineFilter, click.kamil.springstatemachineexporter.exporter.EnumFormat.fn, click.kamil.springstatemachineexporter.exporter.EnumFormat.fn, resolveClasspath);
}
System.clearProperty("html.hideMetadataPane");