Fix log message.
This commit is contained in:
parent
b4cb3b8694
commit
5cbdab9da8
1 changed files with 1 additions and 1 deletions
|
|
@ -186,7 +186,7 @@ public class DisplayController extends Component {
|
||||||
Path path = configDir.resolve(dataItem);
|
Path path = configDir.resolve(dataItem);
|
||||||
String label = dataItem.replace('-', ' ');
|
String label = dataItem.replace('-', ' ');
|
||||||
if (path.toFile().canRead()) {
|
if (path.toFile().canRead()) {
|
||||||
logger.finer(() -> "Found display user");
|
logger.finer(() -> "Found " + label);
|
||||||
try {
|
try {
|
||||||
return Optional.ofNullable(Files.readString(path));
|
return Optional.ofNullable(Files.readString(path));
|
||||||
} catch (IOException e) {
|
} catch (IOException e) {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue