Skip to content

Commit

Permalink
Extends updateThing method warning message.
Browse files Browse the repository at this point in the history
Fixes openhab#4557

Signed-off-by: Vita Tucek <vita.tucek@seznam.cz>
  • Loading branch information
docbender committed Jan 13, 2025
1 parent 9ad83ba commit 59e9034
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -479,8 +479,8 @@ protected void updateThing(Thing thing) {
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) {
Expand Down

0 comments on commit 59e9034

Please sign in to comment.