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 {
try {
InputStream props;
var path = FsdUtils.findConfigFile(Constants.APP_NAME,
"logging.properties");
var path
= FsdUtils.findConfigFile(VM_OP_NAME, "logging.properties");
if (path.isPresent()) {
props = Files.newInputStream(path.get());
} else {