From 3fc4a4c9d28ddcc95c265cc7760effa21c5cee32 Mon Sep 17 00:00:00 2001 From: jimtng <2554958+jimtng@users.noreply.github.com> Date: Sat, 15 Apr 2023 17:04:37 +1000 Subject: [PATCH] Improve logging to identify the offending link (#3554) Signed-off-by: Jimmy Tanagra --- .../org/openhab/core/thing/internal/CommunicationManager.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bundles/org.openhab.core.thing/src/main/java/org/openhab/core/thing/internal/CommunicationManager.java b/bundles/org.openhab.core.thing/src/main/java/org/openhab/core/thing/internal/CommunicationManager.java index 608179f64..c47737a6a 100644 --- a/bundles/org.openhab.core.thing/src/main/java/org/openhab/core/thing/internal/CommunicationManager.java +++ b/bundles/org.openhab.core.thing/src/main/java/org/openhab/core/thing/internal/CommunicationManager.java @@ -322,7 +322,7 @@ public class CommunicationManager implements EventSubscriber, RegistryChangeList } } } - logger.warn("No ProfileFactory found which supports profile '{}'", profileTypeUID); + logger.warn("No ProfileFactory found which supports profile '{}' for link '{}'", profileTypeUID, link); return null; }