Github user ahgittin commented on a diff in the pull request:
https://github.com/apache/brooklyn-ui/pull/66#discussion_r213278092
--- Diff:
ui-modules/blueprint-composer/app/components/util/model/entity.model.js ---
@@ -115,6 +116,8 @@ export class Entity {
*
*/
touch() {
+ // include a summary to aid with debugging (otherwise log just
shows the property lastUpdated)
+ this.summary = (this.type || "unset") + (this.id ? " "+this.id :
"");
--- End diff --
okay i'll comment out and we can re-enable if it's wanted for debugging
---