Extends updateThing method warning message. (#4558)
Fixes #4557 Signed-off-by: Vita Tucek <vita.tucek@seznam.cz>pull/4567/head
parent
25cd39cd18
commit
6922d60fd9
|
@ -479,8 +479,8 @@ public abstract class BaseThingHandler implements ThingHandler {
|
||||||
channel.getConfiguration().getProperties()));
|
channel.getConfiguration().getProperties()));
|
||||||
} catch (ConfigValidationException e) {
|
} catch (ConfigValidationException e) {
|
||||||
logger.warn(
|
logger.warn(
|
||||||
"Attempt to update thing '{}' with a thing containing invalid configuration '{}', blocked. This is most likely a bug.",
|
"Attempt to update thing '{}' with a thing containing invalid configuration '{}' blocked. This is most likely a bug: {}",
|
||||||
thing.getUID(), thing.getConfiguration());
|
thing.getUID(), thing.getConfiguration(), e.getValidationMessages());
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
synchronized (this) {
|
synchronized (this) {
|
||||||
|
|
Loading…
Reference in New Issue