Github user tbouron commented on a diff in the pull request:
https://github.com/apache/brooklyn-ui/pull/66#discussion_r213274760
--- 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 --
By expanding the entity and clicking on each property, the console will
show you the value. You can also get that by debugging the code directly rather
than relying on console statements.
It feels a bit odd to duplicate existing data for the sake of debugging
---