You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In BaseThingHandler updateThing method prints a log message with cause of update fail.
Current Behavior
Only information about blocked update is provided in the log message. Information about the result of validation is missing.
Possible Solution
Update log message in the catch block of updateThing method with the validation message:
logger.warn( "Attempt to update thing '{}' with a thing containing invalid configuration '{}' blocked. This is most likely a bug: {}", thing.getUID(), thing.getConfiguration(), e.getValidationMessages());
Steps to Reproduce (for Bugs)
Context
It is nice to have if you have problem with a binding.
Your Environment
Version used: openHAB 4.3.1
Environment name and version : Java21
Operating System and version (desktop or mobile, Windows 11, Raspbian Bullseye, ...): Debian 12
The text was updated successfully, but these errors were encountered:
Expected Behavior
In BaseThingHandler updateThing method prints a log message with cause of update fail.
Current Behavior
Only information about blocked update is provided in the log message. Information about the result of validation is missing.
Possible Solution
Update log message in the catch block of updateThing method with the validation message:
logger.warn( "Attempt to update thing '{}' with a thing containing invalid configuration '{}' blocked. This is most likely a bug: {}", thing.getUID(), thing.getConfiguration(), e.getValidationMessages());
Steps to Reproduce (for Bugs)
Context
It is nice to have if you have problem with a binding.
Your Environment
The text was updated successfully, but these errors were encountered: