Skip to content

Commit a537002

Browse files
Readd warning log details to clarify what option that the log refers to
1 parent 1a662af commit a537002

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

modules/openapi-generator/src/main/java/org/openapitools/codegen/DefaultCodegen.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7091,7 +7091,7 @@ public boolean convertPropertyToBoolean(String propertyKey) {
70917091
} else if (booleanValue instanceof String) {
70927092
result = Boolean.parseBoolean((String) booleanValue);
70937093
} else {
7094-
LOGGER.warn("The value {} must be either boolean or string. Default to `false`.", propertyKey);
7094+
LOGGER.warn("The generator's option \"{}\" must be either boolean or string. Default to `false`.", propertyKey);
70957095
}
70967096
return result;
70977097
}

0 commit comments

Comments
 (0)