-
Notifications
You must be signed in to change notification settings - Fork 83
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
keep subscriptions up to date when accessories are replaced #172
Conversation
but the connection is _not_ torn down also add the ability to modify accessories in a batch without having to regenerate all AIDs and IIDs (and other temporary data structures) at each intermediate step. You must use this mechanism if you plan on replacing an existing accessory with an equivalent one, but want to keep subscriptions intact.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
please
- add java doc to batch methods
- review logging levels
} | ||
reverse.get(connection).add(characteristic); | ||
LOGGER.trace( | ||
"Added subscription to " + characteristic.getClass() + " for " + connection.hashCode()); | ||
LOGGER.debug( |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
the logging levels in Java-HAP are aligned with openHAB logging levels.
https://www.openhab.org/docs/developer/guidelines.html#f-logging
i.e. "debug" is used for unexpected expected behavior.
trace for all detailed logging.
please revert it back to debug so that it is consistent within Java-HAP and as bonus also with openHAB
please check other LOGGER.debug in this PR as well
ping @yfre : I believe I've addressed all of your comments |
but the connection is not torn down
also add the ability to modify accessories in a batch without having to regenerate all AIDs and IIDs (and other temporary data structures) at each intermediate step. You must use this mechanism if you plan on replacing an existing accessory with an equivalent one, but want to keep subscriptions intact.