if (!configFile.isAbsolute()) {
if (absConfigPath != null) {
configFile = new File(absConfigPath, path);
} else if (!couldBeResource) {
throw new LogException(exceptionLocalizer.format(
"relative-paths-not-allowed", path));
}
}
if (!configFile.exists() && mustExist) {
configFile = null;