Fix NPE in JAAS PropertiesLoader when in debug mode without baseDir
This commit is contained in:
parent
6fbafc4441
commit
a3527869b4
|
@ -112,7 +112,7 @@ public class PropertiesLoader {
|
|||
}
|
||||
}
|
||||
if (debug) {
|
||||
logger.debug("Using basedir=" + baseDir.getAbsolutePath());
|
||||
logger.debug("Using basedir=" + (baseDir == null ? null : baseDir.getAbsolutePath()));
|
||||
}
|
||||
return baseDir;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue