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