Skip to content

Commit bb71201

Browse files
Fix misleading warning message for missing output directory. (#8742)
Change warning message to info. Add name of directory checked to message. Resolves #4627
1 parent bed5ab1 commit bb71201

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/ignore/CodegenIgnoreProcessor.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ public CodegenIgnoreProcessor(final String baseDirectory, final String ignoreFil
6565
if (directory.exists() && directory.isDirectory()) {
6666
loadFromFile(targetIgnoreFile);
6767
} else {
68-
LOGGER.warn("Output directory does not exist, or is inaccessible. No file (.openapi-generator-ignore) will be evaluated.");
68+
LOGGER.info("Output directory ({}) does not exist, or is inaccessible. No file (.openapi-generator-ignore) will be evaluated.", baseDirectory);
6969
}
7070
}
7171

0 commit comments

Comments
 (0)