Fix file lookup.

This commit is contained in:
Michael Lipp 2023-08-09 18:16:54 +02:00
parent 050d283120
commit 89fb5b1890

View file

@ -86,8 +86,8 @@ public class Manager extends Component {
static { static {
try { try {
InputStream props; InputStream props;
var path = FsdUtils.findConfigFile(Constants.APP_NAME, var path
"logging.properties"); = FsdUtils.findConfigFile(VM_OP_NAME, "logging.properties");
if (path.isPresent()) { if (path.isPresent()) {
props = Files.newInputStream(path.get()); props = Files.newInputStream(path.get());
} else { } else {