Extends updateThing method warning message. (#4558)

Fixes #4557

Signed-off-by: Vita Tucek <vita.tucek@seznam.cz>
This commit is contained in:
Vita
2025-01-19 12:19:09 +01:00
committed by GitHub
parent 25cd39cd18
commit 6922d60fd9
@@ -479,8 +479,8 @@ public abstract class BaseThingHandler implements ThingHandler {
channel.getConfiguration().getProperties()));
} catch (ConfigValidationException e) {
logger.warn(
"Attempt to update thing '{}' with a thing containing invalid configuration '{}', blocked. This is most likely a bug.",
thing.getUID(), thing.getConfiguration());
"Attempt to update thing '{}' with a thing containing invalid configuration '{}' blocked. This is most likely a bug: {}",
thing.getUID(), thing.getConfiguration(), e.getValidationMessages());
return;
}
synchronized (this) {