mirror of
https://github.com/danieldemus/openhab-core.git
synced 2026-07-29 12:34:22 +02:00
Extends updateThing method warning message. (#4558)
Fixes #4557 Signed-off-by: Vita Tucek <vita.tucek@seznam.cz>
This commit is contained in:
+2
-2
@@ -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) {
|
||||
|
||||
Reference in New Issue
Block a user