We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6cf58af commit 76e8e81Copy full SHA for 76e8e81
1 file changed
modules/openapi-generator/src/main/java/org/openapitools/codegen/DefaultGenerator.java
@@ -186,12 +186,12 @@ private void configureGeneratorProperties() {
186
}
187
188
if (GlobalSettings.getProperty("debugOpenAPI") != null) {
189
- SerializerUtils.toJsonString(openAPI);
+ System.out.println(SerializerUtils.toJsonString(openAPI));
190
} else if (GlobalSettings.getProperty("debugSwagger") != null) {
191
// This exists for backward compatibility
192
// We fall to this block only if debugOpenAPI is null. No need to dump this twice.
193
LOGGER.info("Please use system property 'debugOpenAPI' instead of 'debugSwagger'.");
194
195
196
197
config.processOpts();
0 commit comments