diff --git a/bundles/org.openhab.core.model.yaml/src/main/java/org/openhab/core/model/yaml/internal/YamlModelRepository.java b/bundles/org.openhab.core.model.yaml/src/main/java/org/openhab/core/model/yaml/internal/YamlModelRepository.java index a7d041387..bb71ec3ba 100644 --- a/bundles/org.openhab.core.model.yaml/src/main/java/org/openhab/core/model/yaml/internal/YamlModelRepository.java +++ b/bundles/org.openhab.core.model.yaml/src/main/java/org/openhab/core/model/yaml/internal/YamlModelRepository.java @@ -157,6 +157,7 @@ public class YamlModelRepository implements WatchService.WatchEventListener { private AbstractYamlFile readYamlFile(Path path, Class dtoClass) throws YamlParseException { + logger.info("Loading model '{}'", path.toFile().getName()); logger.debug("readYamlFile {} with {}", path.toFile().getAbsolutePath(), dtoClass.getName()); try { AbstractYamlFile dto = yamlReader.readValue(path.toFile(), dtoClass);