Fix file lookup.
This commit is contained in:
parent
050d283120
commit
89fb5b1890
1 changed files with 2 additions and 2 deletions
|
|
@ -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 {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue