forked from loafle/openapi-generator-original
Fix misleading warning message for missing output directory. (#8742)
Change warning message to info. Add name of directory checked to message. Resolves #4627
This commit is contained in:
parent
bed5ab17ef
commit
bb712013f8
@ -65,7 +65,7 @@ public class CodegenIgnoreProcessor {
|
|||||||
if (directory.exists() && directory.isDirectory()) {
|
if (directory.exists() && directory.isDirectory()) {
|
||||||
loadFromFile(targetIgnoreFile);
|
loadFromFile(targetIgnoreFile);
|
||||||
} else {
|
} else {
|
||||||
LOGGER.warn("Output directory does not exist, or is inaccessible. No file (.openapi-generator-ignore) will be evaluated.");
|
LOGGER.info("Output directory ({}) does not exist, or is inaccessible. No file (.openapi-generator-ignore) will be evaluated.", baseDirectory);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user