Extends updateThing method warning message. (#4558)

Fixes #4557

Signed-off-by: Vita Tucek <vita.tucek@seznam.cz>
pull/4475/merge
Vita 2025-01-19 12:19:09 +01:00 committed by GitHub
parent 25cd39cd18
commit 6922d60fd9
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 2 deletions

View File

@ -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) {