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 1a662af commit a537002Copy full SHA for a537002
modules/openapi-generator/src/main/java/org/openapitools/codegen/DefaultCodegen.java
@@ -7091,7 +7091,7 @@ public boolean convertPropertyToBoolean(String propertyKey) {
7091
} else if (booleanValue instanceof String) {
7092
result = Boolean.parseBoolean((String) booleanValue);
7093
} else {
7094
- LOGGER.warn("The value {} must be either boolean or string. Default to `false`.", propertyKey);
+ LOGGER.warn("The generator's option \"{}\" must be either boolean or string. Default to `false`.", propertyKey);
7095
}
7096
return result;
7097
0 commit comments