Fix log message.

This commit is contained in:
Michael Lipp 2025-02-27 14:55:31 +01:00
parent b4cb3b8694
commit 5cbdab9da8

View file

@ -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) {