Extends updateThing method warning message. (#4558)
Fixes #4557 Signed-off-by: Vita Tucek <vita.tucek@seznam.cz>pull/4475/merge
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) {
|
||||
|
|
Loading…
Reference in New Issue